From 0b7f06348c554e9a96792633f02801070f604703 Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Tue, 30 Sep 2025 11:56:17 +0100 Subject: [PATCH] ci(snyk): fix syntax (#5605) - cannot have a negation in an 'if' --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb54fd3d3..c30618d1c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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