Skip to content

Commit 2aa3d84

Browse files
authored
chore: Checks boolean as string to send slack notifications (#2338)
1 parent f1ce45e commit 2aa3d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
slack-notification:
8383
needs: [tests, clean-after]
84-
if: ${{ !cancelled() && needs.tests.result == 'failure' && inputs.send_notification == true }}
84+
if: ${{ !cancelled() && needs.tests.result == 'failure' && (inputs.send_notification == true || inputs.send_notification == 'true') }}
8585
runs-on: ubuntu-latest
8686
permissions: {}
8787
steps:

0 commit comments

Comments
 (0)