Skip to content

Commit ee5ecfd

Browse files
committed
chore(workflows): do not run the release-please workflow for chore type commits
1 parent 12cfaf2 commit ee5ecfd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ on:
88

99
jobs:
1010
tests:
11+
if: ${{ !(contains(github.event.head_commit.message, 'chore')) }}
1112
uses: ./.github/workflows/run-unit-test.yml
1213
release-please:
14+
if: ${{ !(contains(github.event.head_commit.message, 'chore')) }}
1315
needs: [tests] # require tests to pass before release-please runs
1416
runs-on: ubuntu-latest
1517
steps:

0 commit comments

Comments
 (0)