[github] Disable signed-commit replay in Code Radiator merge PR pushes#25577
Merged
Conversation
Co-authored-by: rolfbjarne <249268+rolfbjarne@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Merge main into xcode26.5
Disable signed-commit replay in Code Radiator merge PR pushes
May 29, 2026
rolfbjarne
approved these changes
May 29, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Disables signed-commit replay in the Code Radiator agentic workflow's safe-outputs so that merge PR branch pushes (which may include submodule bumps) no longer fail when the signed-commit path cannot handle the commit shape.
Changes:
- Add
signed-commits: falsetosafe-outputs.create-pull-requestandsafe-outputs.push-to-pull-request-branchin the workflow source. - Regenerate the compiled lock file so both the safe outputs config JSON and the handler config env var include
"signed_commits": falsefor those two outputs.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/code-radiator.md | Adds signed-commits: false to the two PR-writing safe outputs. |
| .github/workflows/code-radiator.lock.yml | Regenerated lock with matching "signed_commits": false in config JSON and handler env. |
Member
|
/azp run |
|
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
This was
linked to
issues
Jun 1, 2026
dalexsoto
approved these changes
Jun 1, 2026
Member
|
/azp run |
|
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
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.
Code Radiator failed to create the
main -> xcode26.5merge PR because safe-outputs attempted signed commit replay, then refused unsigned fallback when a submodule update was present. This change switches the merge workflow to explicit unsigned push behavior for PR branch updates.Root cause addressed
pushSignedCommitsreplay for merge branches that can include unsupported commit shapes (notably submodule bumps).Workflow source updates (
code-radiator.md)signed-commits: falseunder:safe-outputs.create-pull-requestsafe-outputs.push-to-pull-request-branchCompiled workflow parity (
code-radiator.lock.yml)"signed_commits": falseforcreate_pull_request"signed_commits": falseforpush_to_pull_request_branch