Skip to content

Commit

Permalink
chore: Checks boolean as string to send slack notifications (#2338)
Browse files Browse the repository at this point in the history
  • Loading branch information
oarbusi authored Jun 11, 2024
1 parent f1ce45e commit 2aa3d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

slack-notification:
needs: [tests, clean-after]
if: ${{ !cancelled() && needs.tests.result == 'failure' && inputs.send_notification == true }}
if: ${{ !cancelled() && needs.tests.result == 'failure' && (inputs.send_notification == true || inputs.send_notification == 'true') }}
runs-on: ubuntu-latest
permissions: {}
steps:
Expand Down

0 comments on commit 2aa3d84

Please sign in to comment.