Make PR Description Updater use triggering PR context for update_pull_request - #53301
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix PR Description Updater to handle call limits
Make PR Description Updater use triggering PR context for Aug 17, 2026
update_pull_request
Contributor
PR TriageCategory: bug | Risk: low | Score: 30/100
Recommended action: batch_review (grouped with #53302, #53300 as small workflow/agent fixes)
|
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns the PR Description Updater’s safe-output configuration with its triggering pull-request context.
Changes:
- Removes wildcard PR targeting so identifiers are inferred from the event.
- Regenerates the compiled workflow configuration.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/pr-description-caveman.md |
Removes target: '*'. |
.github/workflows/pr-description-caveman.lock.yml |
Updates generated metadata and safe-output configuration. |
Review details
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
- Files reviewed: 2/2 changed files
- Comments generated: 0
- Review effort level: Balanced
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 PR Description Updater workflow reported structured incompletion because its single allowed
update_pull_requestcall was consumed during recovery from argument/target mismatch, before final content submission. The workflow config required explicit PR targeting while the prompt instructed identifier-less calls.Root cause
safe-outputs.update-pull-requestwas configured withtarget: '*', which requirespull_request_number.max: 1.Change made
.github/workflows/pr-description-caveman.mdsoupdate_pull_requestresolves to the triggering PR context..github/workflows/pr-description-caveman.lock.ymlto reflect the new safe-outputs contract.Behavioral impact
update_pull_requestno longer requires explicitpull_request_numberin this workflow.