Skip to content

Commit 3092f10

Browse files
authored
Merge pull request #1304 from numbersprotocol/fix/slack-notification
fix(build.yml): fix wrong if expression
2 parents a067681 + 4caea33 commit 3092f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
notification-failure:
150150
runs-on: ubuntu-latest
151151
needs: test
152-
if: ${{ failure() }} && github.actor != 'dependabot[bot]'
152+
if: ${{ failure() && github.actor != 'dependabot[bot]'}}
153153

154154
steps:
155155
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)