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 6253b7a commit e5cd3adCopy full SHA for e5cd3ad
.github/workflows/commit-tests.yml
@@ -10,6 +10,8 @@ env:
10
jobs:
11
parse-commit:
12
runs-on: ubuntu-latest
13
+ # if the commit message does not contain {craft} or {bash} tags, then skip the craft-test and bash-test jobs
14
+ if: github.event_name == 'push' && (contains(github.event.head_commit.message, '{craft}') || contains(github.event.head_commit.message, '{bash}'))
15
outputs:
16
skip_craft: ${{ steps.parse_commit.outputs.skip_craft }}
17
craft: ${{ steps.parse_commit.outputs.craft }}
0 commit comments