From 373d869583d9925f0c08dc2f30e265a630334ad7 Mon Sep 17 00:00:00 2001 From: Ben Radstone Date: Tue, 17 Dec 2024 18:43:27 +0000 Subject: [PATCH] docs: fix URL formatting for slack notif --- .github/workflows/release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index eae02776b7..1a2e080073 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -92,7 +92,8 @@ jobs: SLACK_COLOR: "danger" SLACKIFY_MARKDOWN: true ENABLE_ESCAPES: true - SLACK_MESSAGE: "The self-hosted runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>." + SLACK_MESSAGE: "The self-hosted runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. [View details](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})." + # Use this workflow if you want to use the GitHub-hosted large runner. Useful for scenarios when you need a change to deploy faster than the self-hosted runner can build it. build-large-runner: @@ -148,7 +149,7 @@ jobs: SLACK_COLOR: "danger" SLACKIFY_MARKDOWN: true ENABLE_ESCAPES: true - SLACK_MESSAGE: "The large runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>." + SLACK_MESSAGE: "The large runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. [View details](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})." release: name: "Release" @@ -197,4 +198,4 @@ jobs: SLACK_COLOR: "danger" SLACKIFY_MARKDOWN: true ENABLE_ESCAPES: true - SLACK_MESSAGE: "The release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>." \ No newline at end of file + SLACK_MESSAGE: "The release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. [View details](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})." \ No newline at end of file