make sure nightly job failure adds release blocker label#1606
make sure nightly job failure adds release blocker label#1606simongdavies wants to merge 2 commits into
Conversation
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the Rust nightly workflow’s CI-failure notifier configuration so nightly musl failures de-duplicate into their own issue (rather than reusing the general periodic-CI issue), with the goal of ensuring the resulting failure issue is created with the release-blocker label.
Changes:
- Switch the notifier’s first label (used as the de-duplication/search key) from
area/ci-periodicstoarea/ci-periodics-nightlyin the nightly musl failure job.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
The script that runs creates an issue if it cannot find an open issue with the first label passed as an argument, both this job and the coverage job share a first label, the coverage job does not apply the release-blocker label, so if the coverage job fails it creates an issue WITHOUT the release-blocker label, then this job fails finds the issue and adds to it, but doesn't add the label. I guess we could change the script but this PR gives a unique label to this job so the issue will always have the release-blocker label. |
fixes #1526