We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e6085 commit 5d01549Copy full SHA for 5d01549
.github/workflows/ci.yml
@@ -133,9 +133,9 @@ jobs:
133
- name: Release Edge version
134
if: |
135
github.event_name == 'push' &&
136
- !contains(github.event.head_commit.message, '[skip-release]') &&
137
- !contains(github.event.head_commit.message, 'chore') &&
138
- !contains(github.event.head_commit.message, 'docs')
+ !startsWith(github.event.head_commit.message, '[skip-release]') &&
+ !startsWith(github.event.head_commit.message, 'chore') &&
+ !startsWith(github.event.head_commit.message, 'docs')
139
run: ./scripts/release-edge.sh
140
env:
141
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
0 commit comments