Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/pr-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
# Find all open PRs targeting main that are BEHIND and not from bots.
# Renovate PRs target testing, not main — skip them.
# Mergeraptor manages its own branches — skip those too.
# auto/promote-testing-to-main is always rebuilt fresh by promote-testing-to-main.yml;
# a merge commit here changes the tree, defeats the tree-identity check, triggers a
# force-push, and dismisses approvals. Let the promote workflow keep it current.
STALE_PRS=$(gh pr list \
--repo "$REPO" \
--base main \
Expand All @@ -42,6 +45,7 @@ jobs:
select(.mergeStateStatus == "BEHIND") |
select(.author.login != "renovate[bot]") |
select(.author.login != "app/mergeraptor") |
select(.headRefName != "auto/promote-testing-to-main") |
.number
')

Expand Down
Loading