feat: trigger electron/agent-workflows chromium-upgrade on Chromium roll#190
Merged
Merged
Conversation
After a successful Chromium roll PR is opened or updated against electron/electron main, dispatch the chromium-upgrade workflow in electron/agent-workflows so the agent can pick up the new roll state. The workflow's concurrency group cancels older runs, so re-dispatching on every roll update is safe.
VerteDinde
approved these changes
Apr 29, 2026
Member
VerteDinde
left a comment
There was a problem hiding this comment.
Very excited to try this! 🎉
ckerr
approved these changes
Apr 29, 2026
dsanders11
approved these changes
Apr 29, 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.
What
After a Chromium roll PR is created or updated against
electron/electronmain, roller dispatches thechromium-upgrade.ymlworkflow inelectron/agent-workflowsviaoctokit.actions.createWorkflowDispatch(refmain, no inputs).Why
That workflow runs the Claude chromium-upgrade agent against the
roller/chromium/mainbranch — the agent reads the roll state directly from the branch, so no PR number / version needs to be passed through. The workflow's concurrency group (claude-chromium-upgrade,cancel-in-progress: true) means re-dispatching on every roll update is safe: newer runs cancel older ones.Gating
pulls.updateactually fired, e.g. all PRs were trop-bot / paused / DEPS-unchanged).debug-logged so a 403/404 from the Actions API never breaks the roll itself.Note for deployment
The roller GitHub App installation needs
actions:writeonelectron/agent-workflowsforcreateWorkflowDispatchto succeed.Generated by Claude Code