We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af5c4e commit c49aeaeCopy full SHA for c49aeae
.github/workflows/commit-queue.yml
@@ -37,6 +37,7 @@ jobs:
37
--repo ${{ github.repository }} \
38
--base ${{ github.ref_name }} \
39
--label 'commit-queue' \
40
+ --no-label 'blocked' \
41
--json 'number' \
42
--search "created:<=$(date --date="2 days ago" +"%Y-%m-%dT%H:%M:%S%z")" \
43
-t '{{ range . }}{{ .number }} {{ end }}' \
tools/actions/commit-queue.sh
@@ -33,6 +33,7 @@ git config --local user.name "Node.js GitHub Bot"
33
34
for pr in "$@"; do
35
gh pr view "$pr" --json labels --jq ".labels" > labels.json
36
+
# 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"
0 commit comments