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