Add awf-release-integrator skill for AWF release bumps#31759
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
Add awf-release-integrator skill
Add awf-release-integrator skill for AWF release bumps
May 12, 2026
Copilot created this pull request from a session on behalf of
pelikhan
May 12, 2026 17:58
View session
pelikhan
approved these changes
May 12, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds guidance for reliably integrating upstream gh-aw-firewall releases into gh-aw, and updates the embedded GitHub Actions workflow JSON schema to reflect newer concurrency capabilities.
Changes:
- Add a new
.github/skills/awf-release-integrator/SKILL.mddocumenting the AWF bump/integration workflow (pins, gates, upstream drift review, regen steps). - Update
pkg/workflow/schemas/github-workflow.jsonto includeconcurrency.queueand adjust concurrency descriptions accordingly.
Show a summary per file
| File | Description |
|---|---|
pkg/workflow/schemas/github-workflow.json |
Extends embedded GitHub Actions schema with concurrency.queue and updates related descriptions. |
.github/skills/awf-release-integrator/SKILL.md |
New skill doc capturing the standard AWF release bump + validation/regeneration procedure. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 2
Comment on lines
+36
to
42
| "queue": { | ||
| "$comment": "https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#example-queueing-multiple-pending-runs", | ||
| "description": "Controls how pending jobs or workflow runs are queued within a concurrency group. With the default `single`, at most one run can be pending — additional pending runs cancel the previous one. With `max`, up to 100 runs can be pending and are processed in FIFO order. The combination of `queue: max` and `cancel-in-progress: true` is not allowed.", | ||
| "type": "string", | ||
| "enum": ["single", "max"], | ||
| "default": "single" | ||
| } |
Comment on lines
16
to
22
| "concurrency": { | ||
| "type": "object", | ||
| "properties": { | ||
| "group": { | ||
| "$comment": "https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-using-concurrency-to-cancel-any-in-progress-job-or-run-1", | ||
| "description": "When a concurrent job or workflow is queued, if another job or workflow using the same concurrency group in the repository is in progress, the queued job or workflow will be pending. Any previously pending job or workflow in the concurrency group will be canceled.", | ||
| "description": "When a concurrent job or workflow is queued, if another job or workflow using the same concurrency group in the repository is in progress, the queued job or workflow will be pending. By default any previously pending job or workflow in the concurrency group will be canceled; this behavior can be changed with `queue`.", | ||
| "type": "string" |
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.
New Feature
What does this feature do?
Adds an
awf-release-integratorskill under.github/skills/for the AWF upgrade workflow ingh-aw. The skill directs agents to fetch the latestgithub/gh-aw-firewallrelease, update AWF version pins and gates, rebuild/recompile generated artifacts, and review upstream release/spec drift for follow-up changes.Why is this feature needed?
AWF release bumps in
gh-aware more than a constant update: they can require schema syncs, version-gated flag changes, and spec-follow-up work. This skill captures that integration path in one place so release updates are handled consistently and with the right review surface.Implementation details
New skill
.github/skills/awf-release-integrator/SKILL.mdgh-aw-firewallrelease intogh-awPinned-source guidance
pkg/constants/version_constants.gopkg/workflow/awf_config.gopkg/workflow/awf_helpers.gopkg/workflow/schemas/awf-config.schema.jsonspecs/awf-config-sources-spec.mdUpgrade workflow
DefaultFirewallVersionDefaultFirewallVersionand any relevantAWF*MinVersiongatesFollow-up review heuristics
gh-awspecs/awf-config-sources-spec.mdRequired rebuild path