From 8a3e32bdc3ccf435aefe9cea4b83c860fa98ecf4 Mon Sep 17 00:00:00 2001 From: Ellis Tarn Date: Fri, 23 Jun 2023 17:32:17 -0700 Subject: [PATCH] chore: link to testrun (#4120) Co-authored-by: Jonathan Innis --- .github/actions/e2e/slack/notify/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/e2e/slack/notify/action.yaml b/.github/actions/e2e/slack/notify/action.yaml index ef40b6a35203..bb544f7665f9 100644 --- a/.github/actions/e2e/slack/notify/action.yaml +++ b/.github/actions/e2e/slack/notify/action.yaml @@ -40,9 +40,9 @@ runs: if: ${{ job.status == 'success' }} with: url: ${{ inputs.url }} - message: ":white_check_mark: ${{ env.RUN_NAME }} tests succeeded (#${{ github.run_number }})" + message: ":white_check_mark: ${{ env.RUN_NAME }} (https://github.com/${{github.repository}}/actions/runs/${{github.run_id}})" - uses: ./.github/actions/e2e/slack/send-message if: ${{ job.status == 'failure' }} with: url: ${{ inputs.url }} - message: ":x: ${{ env.RUN_NAME }} tests failed (#${{ github.run_number }})" \ No newline at end of file + message: ":x: ${{ env.RUN_NAME }} (https://github.com/${{github.repository}}/actions/runs/${{github.run_id}})" \ No newline at end of file