mirror of https://github.com/nodejs/node.git
27 lines
598 B
Bash
Executable File
27 lines
598 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
REQUEST_CI_LABEL="request-ci"
|
|
REQUEST_CI_FAILED_LABEL="request-ci-failed"
|
|
|
|
for pr in "$@"; do
|
|
gh pr edit "$pr" --remove-label "$REQUEST_CI_LABEL"
|
|
|
|
ci_started=yes
|
|
rm -f output;
|
|
ncu-ci run "$pr" >output 2>&1 || ci_started=no
|
|
cat output
|
|
|
|
if [ "$ci_started" = "no" ]; then
|
|
# Do we need to reset?
|
|
gh pr edit "$pr" --add-label "$REQUEST_CI_FAILED_LABEL"
|
|
|
|
jq -n --arg content "<details><summary>Couldn't start CI</summary><pre>$(cat output || true)</pre></details>" > output.json
|
|
|
|
gh pr comment "$pr" --body-file output.json
|
|
|
|
rm output.json;
|
|
fi
|
|
done;
|