From e7b62714b260efffab8f9ee27afd35d9da0dab0a Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 15 Jul 2021 12:49:01 +0200 Subject: [PATCH] chore(ci): support [skip-release] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c8c1cf0b23..eba33409d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: run: yarn test:presets - name: Release Edge - if: github.event_name == 'push' + if: github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip-release]') run: ./scripts/release-edge.sh env: NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}