Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix push-to-pull-request-branch target for workflow_dispatch
The codegen-agentic-fix workflow is always triggered via
workflow_dispatch (from codegen-check.yml), which has no PR context.
The push-to-pull-request-branch safe-output defaulted to target
"triggering", causing every run to fail with "requires pull request
context".

Set target: "*" with labels: [dependencies] so the agent can push to
the PR branch identified by the pr_number input, constrained to PRs
carrying the "dependencies" label (Dependabot PRs).
  • Loading branch information
edburns committed Apr 30, 2026
commit 637da14b658e2a2e379f61267228f0a28fdf3e2c
30 changes: 15 additions & 15 deletions .github/workflows/codegen-agentic-fix.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .github/workflows/codegen-agentic-fix.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ tools:

safe-outputs:
push-to-pull-request-branch:
target: "*"
labels: [dependencies]
add-comment:
target: "*"
max: 5
Expand Down
Loading