ci(snyk): fix syntax (#5605)

- cannot have a negation in an 'if'
This commit is contained in:
Iain Sproat
2025-09-30 11:56:17 +01:00
committed by GitHub
parent 4a8793c132
commit 0b7f06348c
+1 -1
View File
@@ -104,5 +104,5 @@ jobs:
needs: [tests]
uses: ./.github/workflows/snyk.yml
# skip snyk on testing branches
if: !startsWith(github.ref , 'refs/heads/testing')
if: startsWith(github.ref , 'refs/heads/testing') == false
secrets: inherit