/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/actions/start-ci.sh
29 строк
730 B
Antoine du Hamel
tools: adopt the `--check-for-duplicates` NCU flag
30 мар 2026, 17:50
Не верифицирован
30 мар 2026, 17:50
fbf8276
Код
Авторство
О чём код?
#!/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 --check-for-duplicates "$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" # shellcheck disable=SC2154 cqurl="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" body="<details><summary>Failed to start CI</summary><pre>$(cat output)</pre><a href='$cqurl'>$cqurl</a></details>" echo "$body" gh pr comment "$pr" --body "$body" rm output fi done;