diff options
| author | Gangzheng Tong <tonggangzheng@gmail.com> | 2025-09-09 19:31:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-09 19:31:16 -0700 |
| commit | e554e1b726814535565f0619a868b96b6f2fb525 (patch) | |
| tree | 38a69d566b9fd659f4828eb55f18b047ff2d7bb7 /.github | |
| parent | 8aa63073c1be2cdc0c34e71601cb28255e92a805 (diff) | |
Send notification only on scheduled CTS runs (#8418)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/vk-gl-cts-nightly.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/vk-gl-cts-nightly.yml b/.github/workflows/vk-gl-cts-nightly.yml index 95499e3af..e329b9e18 100644 --- a/.github/workflows/vk-gl-cts-nightly.yml +++ b/.github/workflows/vk-gl-cts-nightly.yml @@ -111,7 +111,7 @@ jobs: - name: success notification id: slack-notify-success - if: ${{ success() }} + if: ${{ github.event_name == 'schedule' && success() }} uses: slackapi/slack-github-action@v1.26.0 with: payload: | @@ -122,7 +122,7 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - name: failure notification id: slack-notify-failure - if: ${{ !success() }} + if: ${{ github.event_name == 'schedule' && !success() }} uses: slackapi/slack-github-action@v1.26.0 with: payload: | |
