From 6a5b94ca12180cb56d286bd9ed372bf0e47f9d76 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 9 Aug 2026 12:46:15 +0200 Subject: [PATCH] tools: remove skip logic in `commit-queue.sh` Signed-off-by: Antoine du Hamel --- tools/actions/commit-queue.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/tools/actions/commit-queue.sh b/tools/actions/commit-queue.sh index b6e62139d626..9828f2d6b3e8 100755 --- a/tools/actions/commit-queue.sh +++ b/tools/actions/commit-queue.sh @@ -35,18 +35,7 @@ SHOULD_ABORT= for pr in "$@"; do gh pr view "$pr" --json labels --jq ".labels" > labels.json - # Skip PR if CI was requested - if jq -e 'map(.name) | index("request-ci")' < labels.json; then - echo "pr ${pr} skipped, waiting for CI to start" - continue - fi - - # Skip PR if CI is still running - if gh pr checks "$pr" | grep -q "\spending\s"; then - echo "pr ${pr} skipped, CI still running" - continue - fi - + if jq -e 'map(.name) | index("commit-queue-squash")' < labels.json; then MULTIPLE_COMMIT_POLICY="--fixupAll" elif jq -e 'map(.name) | index("commit-queue-rebase")' < labels.json; then