-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGitVersion.yml
More file actions
42 lines (37 loc) · 1.11 KB
/
GitVersion.yml
File metadata and controls
42 lines (37 loc) · 1.11 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
32
33
34
35
36
37
38
39
40
41
42
mode: ContinuousDeployment
tag-prefix: "" # allow bare numeric tags like 2.0.0
commit-message-incrementing: Enabled
assembly-versioning-scheme: MajorMinorPatch
# Never allow commit messages to trigger a major bump
major-version-bump-message: "(?!)"
# Opt-in bumps via tokens
minor-version-bump-message: \+semver:\s?minor
patch-version-bump-message: \+semver:\s?patch
branches:
main:
label: "" # clears the default prerelease label
increment: None # no automatic bump unless +semver token
prevent-increment:
of-merged-branch: true
when-branch-merged: true
when-current-commit-tagged: true
develop:
label: "dev"
increment: None
prevent-increment:
of-merged-branch: true
when-branch-merged: true
when-current-commit-tagged: true
feature:
label: "feat"
increment: None
release:
label: "rc"
increment: None
hotfix:
label: "hotfix"
increment: None
pull-request:
label: "pr"
increment: None
assembly-informational-format: "{FullSemVer}+Branch.{BranchName}.Sha.{ShortSha}"