Skip to content

Commit

Permalink
.github/workflows: fix slack race conditional (#10221)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Aug 16, 2023
1 parent 6d77aea commit 3ee6f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
if: needs.core.result != 'success'
run: exit 1
- name: Notify Slack
if: failure() && ${{ matrix.cmd }} == 'go_core_race_tests' && github.event.schedule != ''
if: ${{ failure() && matrix.cmd == 'go_core_race_tests' && github.event.schedule != '' }}
uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0
env:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
Expand Down

0 comments on commit 3ee6f7f

Please sign in to comment.