diff options
| author | bors <bors@rust-lang.org> | 2024-03-14 22:45:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-14 22:45:48 +0000 |
| commit | ed9d70f56cfcd33af63a5a39fdf50b7e6b862da4 (patch) | |
| tree | dd5115be0eef0e727cbe0c1336700729683eecb6 | |
| parent | 76d364bfdc15ad65658781d8f7acbe7bd1725fb5 (diff) | |
| parent | 22f6193ac1f26c199418e364efe5883ba1b988c8 (diff) | |
| download | rust-ed9d70f56cfcd33af63a5a39fdf50b7e6b862da4.tar.gz rust-ed9d70f56cfcd33af63a5a39fdf50b7e6b862da4.zip | |
Auto merge of #3382 - saethlin:sysroots-notification, r=saethlin
Fix sysroot notification list of broken targets We use this same shell quoting trick on the line above to expand shell variables into the job URL. So this should work a line down as well... right?
| -rw-r--r-- | src/tools/miri/.github/workflows/sysroots.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/.github/workflows/sysroots.yml b/src/tools/miri/.github/workflows/sysroots.yml index 456c47f9fb7..73a10768db9 100644 --- a/src/tools/miri/.github/workflows/sysroots.yml +++ b/src/tools/miri/.github/workflows/sysroots.yml @@ -53,7 +53,7 @@ jobs: ~/.local/bin/zulip-send --user $ZULIP_BOT_EMAIL --api-key $ZULIP_API_TOKEN --site https://rust-lang.zulipchat.com \ --stream miri --subject "Sysroot Build Errors ($(date -u +%Y-%m))" \ --message 'It would appear that the [Miri sysroots cron job build]('"https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"') failed to build these targets: - $(ls failures) + '"$(ls failures)"' Would you mind investigating this issue? |
