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 00614e3 commit c21a921Copy full SHA for c21a921
.github/workflows/build.yml
@@ -9,7 +9,11 @@ on:
9
jobs:
10
build:
11
name: build
12
- if: (!startsWith(github.event.head_commit.message, 'chore(release):'))
+ if: >
13
+ !startsWith(github.event.head_commit.message, 'chore(release):') && !(
14
+ github.event_name == 'push' &&
15
+ startsWith(github.event.head_commit.message, 'chore(license):')
16
+ )
17
runs-on: ubuntu-latest
18
steps:
19
- name: Checkout
0 commit comments