-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitVersion.yml
More file actions
38 lines (38 loc) · 977 Bytes
/
GitVersion.yml
File metadata and controls
38 lines (38 loc) · 977 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
28
29
30
31
32
33
34
35
36
37
38
mode: ContinuousDeployment
continuous-delivery-fallback-tag: ''
branches:
main:
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
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: bug?[/]
mode: ContinuousDeployment
increment: Inherit
tag: '-bug'
is-release-branch: false
prevent-increment-of-merged-branch-version: true
source-branches: ['main', 'feature', 'release']
pull-request:
mode: ContinuousDeployment
tag: '-pr'
ignore:
sha: []