update automerge workflow to handle multiple PRs - #26335
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pramodbindal The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Pull request overview
Updates the auto-merge-upstream GitHub Actions workflow so it can safely pass multiple PR numbers between steps (without breaking GITHUB_OUTPUT parsing).
Changes:
- Convert
gh pr list --jqoutput to a single space-separated string for bothpr_listandsuccess_pr_list. - Add bash xtrace (
set -x) to the listing step for additional logging/debugging.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - name: List PRs | ||
| id: list-prs | ||
| run: | | ||
| set -x |
No description provided.