Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release

# Thin caller: delegates tag + GitHub Release (LLM-themed notes) + Discord notice to
# the reusable plugin-release workflow in protoLabsAI/release-tools. Fires on a
# `chore: release vX.Y.Z` commit landing on main, or manually via workflow_dispatch.
# The reusable workflow is idempotent: a re-run on an existing tag skips gracefully.
on:
push:
branches: [main]
workflow_dispatch:

jobs:
release:
if: >-
github.repository == 'protoLabsAI/github-plugin' &&
(github.event_name == 'workflow_dispatch' ||
startsWith(github.event.head_commit.message, 'chore: release v'))
uses: protoLabsAI/release-tools/.github/workflows/plugin-release.yml@v2
secrets: inherit
2 changes: 1 addition & 1 deletion protoagent.plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Keep `version` in lockstep with pyproject.toml (tests/test_version.py asserts it).
id: github
name: GitHub (read/write tools)
version: 0.7.0
version: 0.7.1
description: >-
Read AND write GitHub tools over the `gh` CLI, with PER-AGENT write gating. The
read tools (PRs — list + merge readiness, issues, comments, search-before-filing,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "github-plugin"
version = "0.7.0"
version = "0.7.1"
description = "Read/write GitHub tools for protoAgent over the gh CLI, with per-agent write gating."
requires-python = ">=3.11"

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading