Fix codegen-agentic-fix: remove dependencies label requirement for PR pushes#174
Draft
Fix codegen-agentic-fix: remove dependencies label requirement for PR pushes#174
dependencies label requirement for PR pushes#174Conversation
…to-pull-request-branch Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix codegen agentic workflow failure due to missing labels
Fix codegen-agentic-fix: remove May 8, 2026
dependencies label requirement for PR pushes
Collaborator
Contributor
Author
Issue #177 is a reference-impl-sync workflow issue — a different workflow entirely, not a subsequent run of The original failure was the |
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.
The
codegen-agentic-fixworkflow was failing withpush_to_pull_request_branch: Pull request is missing required labels: dependenciesbecause thepush-to-pull-request-branchsafe output required the target PR to carry thedependencieslabel — but PRs without that label (e.g. manually-triggered runs targeting non-Dependabot PRs) caused the push to be blocked entirely.Before the change?
push-to-pull-request-branchsafe output incodegen-agentic-fix.mdrequired target PRs to carry thedependencieslabel (labels: [dependencies]), causing the workflow to fail with a label mismatch error when run against PRs that don't have that label.After the change?
codegen-agentic-fix.md: Removedlabels: [dependencies]frompush-to-pull-request-branchsafe output — the workflow can now push to any PR (target: "*") regardless of labels.codegen-agentic-fix.lock.yml: Regenerated viagh aw compileto reflect the updated frontmatter hash and remove the label constraint from all safe-output handler configs.Pull request checklist
mvn spotless:applyhas been run to format the codemvn clean verifypasses locallyDoes this introduce a breaking change?