diff --git a/.github/workflows/create-docs-issues.yml b/.github/workflows/create-docs-issues.yml index 8885c92407d..20b147ec4e8 100644 --- a/.github/workflows/create-docs-issues.yml +++ b/.github/workflows/create-docs-issues.yml @@ -32,6 +32,7 @@ jobs: env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_DEVREL }} with: + webhook-type: webhook-trigger payload: | { "repository": "${{ github.repository }}", diff --git a/.github/workflows/nightly-check-ci.yml b/.github/workflows/nightly-check-ci.yml index 777bcef3cca..2eae6bd46b9 100644 --- a/.github/workflows/nightly-check-ci.yml +++ b/.github/workflows/nightly-check-ci.yml @@ -104,9 +104,10 @@ jobs: id: slack-nightly-failure if: ${{ failure() && github.repository_owner == 'deephaven' && github.ref == 'refs/heads/main' }} with: + webhook-type: webhook-trigger payload: | { - "slack_message": "Nightly build failure in ${{ matrix.gradle-task }} on Java ${{ matrix.test-jvm-version }} @ ${{ github.head_ref }} ${{ github.sha }}" + "slack_message": "Nightly build failure in ${{ matrix.gradle-task }} on Java ${{ matrix.test-jvm-version }} @ ${{ github.head_ref }} ${{ github.sha }}" ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" } env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NIGHTLY_FAILURE }} diff --git a/.github/workflows/nightly-image-check.yml b/.github/workflows/nightly-image-check.yml index d5745431886..dc207fd005a 100644 --- a/.github/workflows/nightly-image-check.yml +++ b/.github/workflows/nightly-image-check.yml @@ -41,4 +41,5 @@ jobs: env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_DHC_NOTIFY }} with: + webhook-type: webhook-trigger payload: '{"repository": "${{ github.repository }}", "message": "${{ github.workflow }}/${{ github.job }} failure, some image is out of date", "link": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}' diff --git a/.github/workflows/nightly-publish-ci.yml b/.github/workflows/nightly-publish-ci.yml index 0ebba57c54b..eda42e54620 100644 --- a/.github/workflows/nightly-publish-ci.yml +++ b/.github/workflows/nightly-publish-ci.yml @@ -59,9 +59,10 @@ jobs: id: slack-nightly-failure if: failure() with: + webhook-type: webhook-trigger payload: | { - "slack_message": "Nightly publish failure @ ${{ github.head_ref }} ${{ github.sha }}" + "slack_message": "Nightly publish failure @ ${{ github.head_ref }} ${{ github.sha }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" } env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NIGHTLY_FAILURE }}