We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9fabe commit 9fbada6Copy full SHA for 9fbada6
.github/workflows/preview-release.yml
@@ -8,7 +8,8 @@ on:
8
jobs:
9
release:
10
runs-on: ubuntu-latest
11
-
+ # Run the job if manually triggered or if the commit message includes a commit type of fix or feat or breaking change
12
+ if: contains(github.event.head_commit.message, 'fix:') || contains(github.event.head_commit.message, 'fix(') || contains(github.event.head_commit.message, 'feat:') || contains(github.event.head_commit.message, 'feat(') || contains(github.event.head_commit.message, '!:')
13
steps:
14
- name: Checkout PR branch
15
uses: actions/checkout@v4
0 commit comments