-
-
Notifications
You must be signed in to change notification settings - Fork 445
Expand file tree
/
Copy pathGitVersion.yml
More file actions
31 lines (29 loc) · 1.09 KB
/
GitVersion.yml
File metadata and controls
31 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# GitVersion configuration
# Docs: https://gitversion.net/docs/reference/configuration
#
# master → stable releases, patch auto-increments per commit
# development → version is calculated from master tags; the workflow
# appends -dev-{sha} to MajorMinorPatch, so GitVersion's
# own pre-release label is intentionally ignored there.
#
# Commit message overrides (anywhere in the message):
# +semver: major → bumps major (e.g. 3.8.6 → 4.0.0)
# +semver: minor → bumps minor (e.g. 3.8.6 → 3.9.0)
# +semver: patch → bumps patch (e.g. 3.8.6 → 3.8.7) ← default
# +semver: none → no bump on this commit
#
# dev- prefixed tags (created by development branch builds) are ignored
# by GitVersion because they don't match the default tag-prefix [vV].
assembly-versioning-scheme: MajorMinorPatch
assembly-file-versioning-scheme: MajorMinorPatch
mode: Mainline
branches:
master:
regex: '^master$'
increment: Patch
is-mainline: true
development:
regex: '^development$'
increment: Patch
is-mainline: false
source-branches: [master]