You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NerdBank.GitVersioning/version.schema.json
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@
176
176
"type": "object",
177
177
"properties": {
178
178
"branchName": {
179
-
"description": "Defines the format of release branch names. Format must include a placeholder '{version}' for the version",
179
+
"description": "Defines the format of release branch names. Format must include a placeholder '{version}' for the version.",
180
180
"type": "string",
181
181
"pattern": ".*\\{version\\}.*",
182
182
"default": "v{version}"
@@ -188,13 +188,19 @@
188
188
"default": "minor"
189
189
},
190
190
"firstUnstableTag": {
191
-
"description": "Specifies the first/default prerelease tag for new versions",
191
+
"description": "Specifies the first/default prerelease tag for new versions.",
192
192
"type": "string",
193
193
"default": "alpha"
194
194
}
195
195
},
196
196
"additionalProperties": false
197
197
},
198
+
"tagName": {
199
+
"description": "Defines the format of tag names. Format must include a placeholder '{version}' for the version.",
200
+
"type": "string",
201
+
"pattern": ".*\\{version\\}.*",
202
+
"default": "v{version}"
203
+
},
198
204
"pathFilters": {
199
205
"type": "array",
200
206
"description": "An array of pathspec-like strings that are used to filter commits when calculating the version height. A commit will not increment the version height if its changed files are not included by these filters.\nPaths are relative to this file. Paths relative to the root of the repository can be specified with the `:/` prefix.\nExclusions can be specified with a `:^` prefix for relative paths, or a `:^/` prefix for paths relative to the root of the repository.\nAfter a path matches any non-exclude filter, it will be run through all exclude filters. If it matches, the path is ignored.",
0 commit comments