chore(ci): upgrade gh-aw workflows to v0.79.6#72
Merged
Conversation
Ran `gh aw upgrade` to update dispatcher agent, apply codemods, update action pins, and recompile all workflow lock files. Lock files had drifted: dependabot bumped the embedded gh-aw action refs to 0.62.5 without recompiling, so the runtime could not find its own gateway scripts (exit 127 in Start MCP Gateway).
gh-aw emits it tag-pinned; both pin-check and the repo's sha_pinning_required setting reject that.
There was a problem hiding this comment.
Pull request overview
This PR updates this repository’s GitHub Agentic Workflows (gh-aw) artifacts to the gh-aw v0.79.6 toolchain, addressing prior lockfile/action drift that caused runtime failures (e.g., exit 127 during MCP Gateway startup).
Changes:
- Recompiled the
issue-triagelock workflow with gh-aw v0.79.6 (updated action/container pins and generated job/step structure). - Updated the
qworkflow markdown to reference the sanitized trigger text output produced by the compiled workflow. - Added repo support files for agentic workflow routing (agent + skill) and introduced a Copilot cloud “setup steps” workflow plus an actions/containers lock JSON.
Reviewed changes
Copilot reviewed 5 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/q.md | Updates prompt context references to use sanitized step outputs. |
| .github/workflows/issue-triage.lock.yml | Recompiled gh-aw lock workflow with v0.79.6-generated structure, pins, and guardrails. |
| .github/workflows/copilot-setup-steps.yml | Adds a Copilot Agent setup workflow for installing gh-aw tooling. |
| .github/skills/agentic-workflows/SKILL.md | Adds a routing/dispatcher skill definition for gh-aw workflow tasks. |
| .github/aw/actions-lock.json | Adds an actions/containers lock manifest intended to pin workflow dependencies. |
| .github/agents/agentic-workflows.md | Adds an agent definition describing how to route gh-aw workflow requests. |
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install gh-aw extension | ||
| uses: github/gh-aw-actions/setup-cli@5c2fe865bb4dc46e1450f6ee0d0541d759aea73a # v0.79.6 |
Comment on lines
+25
to
+39
| "ghcr.io/github/gh-aw-firewall/agent:0.18.0": { | ||
| "image": "ghcr.io/github/gh-aw-firewall/agent:0.18.0", | ||
| "digest": "sha256:ab84dfc7f5998cb8cd0c596526dd573b7e7d06c6a740266a1e6df879fa16c866", | ||
| "pinned_image": "ghcr.io/github/gh-aw-firewall/agent:0.18.0@sha256:ab84dfc7f5998cb8cd0c596526dd573b7e7d06c6a740266a1e6df879fa16c866" | ||
| }, | ||
| "ghcr.io/github/gh-aw-firewall/squid:0.18.0": { | ||
| "image": "ghcr.io/github/gh-aw-firewall/squid:0.18.0", | ||
| "digest": "sha256:82a5d062a5612a57a43a171a5b79ddbb690a86a8ddda02339cc1675131ae9f8b", | ||
| "pinned_image": "ghcr.io/github/gh-aw-firewall/squid:0.18.0@sha256:82a5d062a5612a57a43a171a5b79ddbb690a86a8ddda02339cc1675131ae9f8b" | ||
| }, | ||
| "ghcr.io/github/gh-aw-mcpg:v0.1.4": { | ||
| "image": "ghcr.io/github/gh-aw-mcpg:v0.1.4", | ||
| "digest": "sha256:0acf25aa1d409f9c73be9e39ac84f4bd4b90d8bfa1db4dc6d7f47d38ccd58914", | ||
| "pinned_image": "ghcr.io/github/gh-aw-mcpg:v0.1.4@sha256:0acf25aa1d409f9c73be9e39ac84f4bd4b90d8bfa1db4dc6d7f47d38ccd58914" | ||
| }, |
Comment on lines
+40
to
+44
| "ghcr.io/github/github-mcp-server:v0.30.3": { | ||
| "image": "ghcr.io/github/github-mcp-server:v0.30.3", | ||
| "digest": "sha256:a2b5fb79b1cee851bfc3532dfe480c3dc5736974ca9d93a7a9f68e52ce4b62a0", | ||
| "pinned_image": "ghcr.io/github/github-mcp-server:v0.30.3@sha256:a2b5fb79b1cee851bfc3532dfe480c3dc5736974ca9d93a7a9f68e52ce4b62a0" | ||
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Recompiled all agentic workflows with gh-aw v0.79.6; lock files had drifted from the dependabot-bumped action refs causing exit 127 at Start MCP Gateway. All workflows validate. Automated by /aw-upgrade