We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52a0fe3 + 5ca79f0 commit 5e9dadaCopy full SHA for 5e9dada
.github/workflows/release.yml
@@ -4,9 +4,17 @@ on:
4
push:
5
branches:
6
- main
7
+ paths:
8
+ - 'src/**'
9
+ - 'Cargo.toml'
10
+ - 'Cargo.lock'
11
pull_request:
12
13
14
15
16
17
18
19
permissions:
20
contents: write
@@ -59,8 +67,9 @@ jobs:
59
67
uses: paulhatch/semantic-version@v5.4.0
60
68
with:
61
69
tag_prefix: "v"
62
- major_pattern: "(MAJOR)"
63
- minor_pattern: "(MINOR)"
70
+ major_pattern: "(MAJOR|BREAKING CHANGE|!:)"
71
+ minor_pattern: "(MINOR|feat:|feature:)"
72
+ patch_pattern: "(PATCH|fix:|patch:|hotfix:)"
64
73
version_format: "${major}.${minor}.${patch}"
65
74
change_path: "src"
66
75
namespace: ""
0 commit comments