Add tag-gated release governance workflow with cross-repo compatibility checks#38
Merged
Merged
Conversation
9 tasks
This was
linked to
issues
May 23, 2026
Agent-Logs-Url: https://github.com/aria-fx/aria/sessions/5ef655ca-3d3d-4187-89d8-a38a8f267fa2 Co-authored-by: jgarverick <2940856+jgarverick@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add release governance workflow for version tags
Add tag-gated release governance workflow with cross-repo compatibility checks
May 23, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions “release governance” gate that runs on framework tag pushes (v*) to validate cross-repo compatibility (skills schema + gateway contract) before creating/updating the GitHub Release notes.
Changes:
- Added a tag-triggered workflow that parses the framework tag and derives the expected
major.minor. - Validates bundled
oasf_schema_versionagainst allaria-skillsoasf-record.jsonmanifests and builds a recommended model matrix. - Validates
aria-gatewaypolicy contract version headermajor.minormatches the framework tag, then creates/updates the GitHub Release body.
Comment on lines
+33
to
+36
| TAG="${GITHUB_REF_NAME}" | ||
| if [[ ! "${TAG}" =~ ^v([0-9]+)\.([0-9]+)\.([0-9]+)([-+][0-9A-Za-z.-]+)?$ ]]; then | ||
| echo "Tag '${TAG}' must follow vMAJOR.MINOR.PATCH SemVer." >&2 | ||
| exit 1 |
Comment on lines
+97
to
+102
| SKILLS_ROOT="$(find governance-check -mindepth 1 -maxdepth 1 -type d -name 'aria-fx-aria-skills-*' | head -n1)" | ||
| if [[ -z "${SKILLS_ROOT}" ]]; then | ||
| echo "Unable to locate extracted aria-skills content." >&2 | ||
| exit 1 | ||
| fi | ||
|
|
Agent-Logs-Url: https://github.com/aria-fx/aria/sessions/b8ad0317-a21a-4ec5-be58-76fa0fef304d Co-authored-by: jgarverick <2940856+jgarverick@users.noreply.github.com>
jgarverick
approved these changes
May 23, 2026
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.
Uh oh!
There was an error while loading. Please reload this page.