We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c67edca commit e9e5eb8Copy full SHA for e9e5eb8
.github/workflows/pipeline.yml
@@ -1,9 +1,7 @@
1
name: Deployment pipeline
2
3
env:
4
- IS_PUSH: ${{ github.event_name == 'push' }}
5
- HAS_SKIP_MESSAGE: ${{ contains(join(github.event.commits.*.message), '#skip') }}
6
- SHOULD_DEPLOY: ${{ github.env.IS_PUSH == 'true' && github.env.HAS_SKIP_MESSAGE != 'true' }}
+ SHOULD_DEPLOY: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message), '#skip') }}
7
8
on:
9
push:
0 commit comments