diff --git a/.github/workflows/develop_ci_slack_report.yml b/.github/workflows/develop_ci_slack_report.yml index 9eb355547ef..02e46e13cc9 100644 --- a/.github/workflows/develop_ci_slack_report.yml +++ b/.github/workflows/develop_ci_slack_report.yml @@ -9,11 +9,9 @@ on: jobs: on-failure: runs-on: ubuntu-latest - if: | - !(github.event.workflow_run.conclusion == 'success' || - github.event.workflow_run.conclusion == 'skipped' || - github.event.workflow_run.conclusion == 'cancelled') + steps: + - run: echo "${{ toJSON(github.event.workflow_run) }}" - uses: ravsamhq/notify-slack-action@be814b201e233b2dc673608aa46e5447c8ab13f2 # pin@v2 with: status: ${{ github.event.workflow_run.conclusion }} @@ -21,11 +19,15 @@ jobs: ${{ github.event.workflow_run.name }} (${{ github.event.workflow.name }}) - ${{ github.event.workflow_run.conclusion }} on ${{ github.event.workflow_run.head_branch }} message_format: | - :fire: *${{ github.event.workflow.name }}* ${{github.event.workflow_run.conclusion}} + :fire: *${{ github.event.workflow.name }}* ${{ github.event.workflow_run.conclusion }} <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }}|View Failure> author: ${{ github.event.workflow_run.head_commit.author.name }} footer: | ${{ github.event.workflow_run.display_title }} - <${{ github.server_url }}/${{ github.repository }}/commit/${{github.event.workflow_run.head_commit.id}}> + <${{ github.server_url }}/${{ github.repository }}/commit/${{ github.event.workflow_run.head_commit.id }}> env: SLACK_WEBHOOK_URL: ${{ secrets.DEV_BROKEN_CI_SLACK_WEBHOOK }} + if: | + !(github.event.workflow_run.conclusion == 'success' || + github.event.workflow_run.conclusion == 'skipped' || + github.event.workflow_run.conclusion == 'cancelled')