-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitVersion.yml
38 lines (38 loc) · 1.01 KB
/
GitVersion.yml
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
mode: ContinuousDeployment
continuous-delivery-fallback-tag: ''
branches:
master:
mode: ContinuousDeployment
tag: 'dev'
increment: Minor
track-merge-target: true
tracks-release-branches: true
is-release-branch: false
prevent-increment-of-merged-branch-version: false
release:
regex: release?[/]
mode: ContinuousDeployment
increment: Patch # not working, when merging a bugfix from master
tag: ''
is-release-branch: true
prevent-increment-of-merged-branch-version: true
feature:
regex: feature?[/]
mode: ContinuousDeployment
increment: Inherit
tag: 'alpha'
is-release-branch: false
prevent-increment-of-merged-branch-version: true
bugfix:
regex: bugfix?[/]
mode: ContinuousDeployment
increment: Inherit
tag: 'bugfix'
is-release-branch: false
prevent-increment-of-merged-branch-version: true
source-branches: ['master', 'feature', 'release']
pull-request:
mode: ContinuousDeployment
tag: '-pr'
ignore:
sha: []