Skip to content

Commit e53d87a

Browse files
authored
tools: remove skip logic in commit-queue.sh
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #65162 Reviewed-By: Jithil P Ponnan <jithil@outlook.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 6a6dee3 commit e53d87a

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

tools/actions/commit-queue.sh

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,7 @@ SHOULD_ABORT=
3535

3636
for pr in "$@"; do
3737
gh pr view "$pr" --json labels --jq ".labels" > labels.json
38-
# Skip PR if CI was requested
39-
if jq -e 'map(.name) | index("request-ci")' < labels.json; then
40-
echo "pr ${pr} skipped, waiting for CI to start"
41-
continue
42-
fi
43-
44-
# Skip PR if CI is still running
45-
if gh pr checks "$pr" | grep -q "\spending\s"; then
46-
echo "pr ${pr} skipped, CI still running"
47-
continue
48-
fi
49-
38+
5039
if jq -e 'map(.name) | index("commit-queue-squash")' < labels.json; then
5140
MULTIPLE_COMMIT_POLICY="--fixupAll"
5241
elif jq -e 'map(.name) | index("commit-queue-rebase")' < labels.json; then

0 commit comments

Comments
 (0)