You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2024. It is now read-only.
readarray -t exists < <(gh issue list --state open --label nightly-CI-failed --json number --jq '.[].number')
57
+
if [ -n "${exists[@]}" ]; then
58
+
echo "Not opening another issue, already have ${#exists[@]} issue(s), latest at https://github.com/rust-lang/rust-semverver/issues/${exists[0]}."
59
+
else
60
+
cat << EOF | gh issue create \
61
+
--label nightly-CI-failed \
62
+
--title "Nightly CI run failed" \
63
+
--body-file -
64
+
The nightly CI run on $(date +%F) seems to have failed.
65
+
66
+
- Check the logs at https://github.com/rust-lang/rust-semverver/actions/runs/${{ github.run_id }}
67
+
- Update to the latest `rustc-nightly` if necessary
0 commit comments