Skip to content

Commit 1755dc1

Browse files
committed
Add link to specific job that failed in error messages sent to Zulip
It makes it easier to see the specific job that that failed rather than just the run.
1 parent 1069003 commit 1755dc1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/cloudsmith-package-sychronised.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
to: notifications
3939
type: stream
4040
topic: ${{ github.repository }} scheduled job failure
41-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
41+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
4242

4343
build-latest-musl-docker-image:
4444
if: |
@@ -66,7 +66,7 @@ jobs:
6666
to: notifications
6767
type: stream
6868
topic: ${{ github.repository }} scheduled job failure
69-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
69+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
7070

7171
build-latest-windows-docker-image:
7272
if: |
@@ -94,7 +94,7 @@ jobs:
9494
to: notifications
9595
type: stream
9696
topic: ${{ github.repository }} scheduled job failure
97-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
97+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
9898

9999
build-release-gnu-docker-image:
100100
if: |
@@ -215,7 +215,7 @@ jobs:
215215
to: notifications
216216
type: stream
217217
topic: ${{ github.repository }} scheduled job failure
218-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
218+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
219219

220220
build-and-push-stdlib-documentation:
221221
needs:
@@ -287,7 +287,7 @@ jobs:
287287
to: notifications
288288
type: stream
289289
topic: ${{ github.repository }} scheduled job failure
290-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
290+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
291291

292292
send-musl-nightly-release-event:
293293
needs: [build-latest-musl-docker-image]
@@ -318,7 +318,7 @@ jobs:
318318
to: notifications
319319
type: stream
320320
topic: ${{ github.repository }} scheduled job failure
321-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
321+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
322322

323323
send-windows-nightly-release-event:
324324
needs: [build-latest-windows-docker-image]
@@ -348,7 +348,7 @@ jobs:
348348
to: notifications
349349
type: stream
350350
topic: ${{ github.repository }} scheduled job failure
351-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
351+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.
352352

353353
send-musl-release-event:
354354
needs: [build-release-musl-docker-image]

.github/workflows/nightlies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ jobs:
6464
to: notifications
6565
type: stream
6666
topic: ${{ github.repository }} scheduled job failure
67-
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
67+
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }} failed.

0 commit comments

Comments
 (0)