forked from CnCNet/client-mod-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitVersion.yml
More file actions
27 lines (24 loc) · 736 Bytes
/
GitVersion.yml
File metadata and controls
27 lines (24 loc) · 736 Bytes
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
tag-prefix: 'yr-'
mode: ContinuousDeployment
increment: Patch
branches:
develop:
regex: ^develop
source-branches: [ 'develop' ]
tag: dev
# Any new features that should be auto versioned should be in a branch under "feature/"
# Example: feature/net7 or feature/quakenet
# Features will increment the version by Minor.
feature:
regex: ^feature?[/-]
source-branches: [ 'develop' ]
tag: useBranchName
increment: Inherit
# Any patches should be put under the "hotfix/" branch prefix.
# Example: hotfix/gamespawn-cloak-fix
# Hotfixes will increment the version by Patch.
hotfix:
regex: ^hotfix?[/-]
source-branches: [ 'develop' ]
tag: useBranchName
increment: Patch