@@ -43,7 +43,7 @@ The global configuration looks like this:
43
43
assembly-versioning-scheme : MajorMinorPatch
44
44
assembly-file-versioning-scheme : MajorMinorPatch
45
45
label-prefix : ' [vV]?'
46
- version-in-branch-pattern : ' (?<version>[vV]?\d+(\.\d+)?(\.\d+)?).*'
46
+ version-in-branch-pattern : (?<version>[vV]?\d+(\.\d+)?(\.\d+)?).*
47
47
major-version-bump-message : ' \+semver:\s?(breaking|major)'
48
48
minor-version-bump-message : ' \+semver:\s?(feature|minor)'
49
49
patch-version-bump-message : ' \+semver:\s?(fix|patch)'
@@ -62,6 +62,7 @@ branches:
62
62
track-merge-target : true
63
63
regex : ^dev(elop)?(ment)?$
64
64
source-branches : []
65
+ is-source-branch-for : []
65
66
tracks-release-branches : true
66
67
is-release-branch : false
67
68
is-mainline : false
@@ -75,6 +76,7 @@ branches:
75
76
source-branches :
76
77
- develop
77
78
- release
79
+ is-source-branch-for : []
78
80
tracks-release-branches : false
79
81
is-release-branch : false
80
82
is-mainline : true
@@ -90,6 +92,7 @@ branches:
90
92
- main
91
93
- support
92
94
- release
95
+ is-source-branch-for : []
93
96
tracks-release-branches : false
94
97
is-release-branch : true
95
98
is-mainline : false
@@ -106,6 +109,7 @@ branches:
106
109
- feature
107
110
- support
108
111
- hotfix
112
+ is-source-branch-for : []
109
113
pre-release-weight : 30000
110
114
pull-request :
111
115
mode : ContinuousDelivery
@@ -120,6 +124,7 @@ branches:
120
124
- feature
121
125
- support
122
126
- hotfix
127
+ is-source-branch-for : []
123
128
pre-release-weight : 30000
124
129
hotfix :
125
130
mode : ContinuousDelivery
@@ -131,6 +136,8 @@ branches:
131
136
- main
132
137
- support
133
138
- hotfix
139
+ is-source-branch-for : []
140
+ is-release-branch : true
134
141
pre-release-weight : 30000
135
142
support :
136
143
label : ' '
@@ -140,6 +147,7 @@ branches:
140
147
regex : ^support[/-]
141
148
source-branches :
142
149
- main
150
+ is-source-branch-for : []
143
151
tracks-release-branches : false
144
152
is-release-branch : false
145
153
is-mainline : true
@@ -157,6 +165,7 @@ branches:
157
165
- pull-request
158
166
- hotfix
159
167
- support
168
+ is-source-branch-for : []
160
169
ignore :
161
170
sha : []
162
171
mode : ContinuousDelivery
@@ -167,6 +176,8 @@ track-merge-target: false
167
176
track-merge-message : true
168
177
commit-message-incrementing : Enabled
169
178
regex : ' '
179
+ source-branches : []
180
+ is-source-branch-for : []
170
181
tracks-release-branches : false
171
182
is-release-branch : false
172
183
is-mainline : false
@@ -259,12 +270,15 @@ and [tracks-release-branches](#tracks-release-branches).
259
270
260
271
# ## label-prefix
261
272
262
- A regular expression which is used to trim Git tags before processing (e.g., v1.0.0). The default value is `[vV]`.
273
+ A regular expression which is used to trim Git tags before processing (e.g.,
274
+ v1.0.0). The default value is `[vV]`.
263
275
264
276
# ## version-in-branch-pattern
265
277
266
- A regular expression which is used to determine the version number in the branch name or commit message (e.g., v1.0.0-LTS).
267
- The default value is `(?<version>[vV]?\d+(\.\d+)?(\.\d+)?).*`.
278
+ A regular expression which is used to determine the version number in the branch
279
+ name or commit message (e.g., v1.0.0-LTS). This setting only applies on branches
280
+ where the option `is-release-branch` is set to `true`. The default value is
281
+ ` (?<version>[vV]?\d +(\.\d +)?(\.\d +)?).*` .
268
282
269
283
# ## major-version-bump-message
270
284
0 commit comments