Integrate Oz changelog skill into create_release workflow#10832
Draft
vikvang wants to merge 1 commit into
Draft
Conversation
Replace the warpdotdev/generate-changelog action in the generate_changelogs
job with oz-agent-action, which invokes the changelog-draft skill to produce
a release-compatible JSON artifact (changelog-release.json).
Changes:
- SKILL.md Step 8: add third output file (changelog-release.json) with the
{newFeatures, improvements, bugFixes, images, oz_updates} schema consumed
by the Slack payload builder and in-app changelog.json steps.
- create_release.yml: replace GitHub App token + generate-changelog steps
with oz-agent-action + a bridge step that reads changelog-release.json
and exposes it as outputs.changelog for downstream compatibility.
- Fix .image -> .images key in the changelog.json builder step to match
the new schema.
Co-Authored-By: Oz <oz-agent@warp.dev>
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.
Description
Replace the
warpdotdev/generate-changelogGitHub Action in thegenerate_changelogsjob with the Oz changelog-draft skill (oz-agent-action). This makes the release changelog generation AI-powered, using the same skill that was landed in #10280.What changed
changelog-release.jsonwith the{newFeatures, improvements, bugFixes, images, oz_updates}schema expected by the Slack payload builder and in-app changelog.json steps.generate_changelogsjob now:oz-agent-actionwith a prompt to follow the changelog-draft skill workflowchangelog-release.jsonand setsoutputs.changelogso all downstream steps (Slack post, GCS upload) work unchanged.imageto.imageskey in the changelog.json builder for schema consistencyHow it works
The Oz agent runs the full skill workflow (fetch PRs, classify contributors, extract feature flags, classify unmarked PRs, assemble draft) and writes three files:
changelog-draft.md— human-reviewable markdownchangelog-draft.json— machine-readable audit artifactchangelog-release.json— release-pipeline-compatible JSON (new)The bridge step loads
changelog-release.jsonintosteps.generate_changelog.outputs.changelog, maintaining the same interface the downstream Slack and GCS steps expect.Linked Issue
Testing
Validated YAML structure (1788 lines, all key references intact)
Generated a real
changelog-release.jsonfrom the latest stable release range (v0.2026.05.06 → v0.2026.05.13): 2 new features, 10 improvements, 27 bug fixes, 1 imageRan the exact downstream jq transforms (Slack payload builder + changelog.json builder) against the generated JSON — all produce valid output
Full end-to-end test will occur on the next release cut
I have manually tested my changes locally with
./script/runAgent Mode
Co-Authored-By: Oz oz-agent@warp.dev