Bump releaseo to v0.0.3 and preserve original release actor through workflow chain#3560
Merged
Bump releaseo to v0.0.3 and preserve original release actor through workflow chain#3560
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3560 +/- ##
==========================================
+ Coverage 65.47% 65.55% +0.08%
==========================================
Files 404 404
Lines 39781 39781
==========================================
+ Hits 26047 26079 +32
+ Misses 11720 11689 -31
+ Partials 2014 2013 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Add infrastructure to preserve the GitHub actor who triggered the release workflow, passing it through to downstream workflows like docs-website updates. Changes: - create-release-tag.yml: Extract Release-Triggered-By git trailer from commit and embed in release body as HTML comment - releaser.yml: Add extract-release-actor job to parse release body and pass actor to update-docs-website and Slack notifications This change is blocked on stacklok/releaseo#20 which adds the Release-Triggered-By trailer to commits created by releaseo. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Dan Barr <6922515+danbarr@users.noreply.github.com>
dba53ae to
84237dd
Compare
ChrisJBurns
approved these changes
Feb 3, 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.
Summary
Adds workflow steps to preserve the GitHub actor who triggered the release workflow, passing it through to downstream workflows like docs-website updates.
Bumps releaseo action to v0.0.3 which introduced this capability.
Problem
When using the new release workflow:
create-release-pr.ymlviaworkflow_dispatch→github.actoris the usercreate-release-tag.ymlwhich creates the release usingRELEASE_TOKENreleaser.ymlis triggered by the release event →github.actoris nowstacklokbot(the PAT owner)This breaks PR assignment in the docs-website repo, which receives
stacklokbotinstead of the original triggering user.Solution
Release-Triggered-By: usernamegit trailer to commitsChanges
create-release-tag.yml: ExtractRelease-Triggered-Bytrailer, embed in release bodyreleaser.yml: Addextract-release-actorjob, use extracted actor for docs update and Slack notificationsDependencies
Important
This PR is blocked on:
Release-Triggered-Bygit trailerstacklok/releaseoaction version increate-release-pr.ymlafter releaseTest Plan
create-release-tag.ymlextracts trailer and includes in release bodyreleaser.ymlextracts actor from release body🤖 Generated with Claude Code