-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitVersion.yml
More file actions
33 lines (30 loc) · 1.04 KB
/
Copy pathGitVersion.yml
File metadata and controls
33 lines (30 loc) · 1.04 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
# Version: 1.0.0
# Date: 2024-12-21
# Features:
# - Main branch continuous delivery configuration
# - Feature branch versioning
# - Support for conventional commits
# - Improved version calculation for development branches
mode: ContinuousDelivery
major-version-bump-message: "^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\\([\\w\\s-]*\\))?(!:|:.*\\n\\n.*BREAKING CHANGE:\\s.*)$"
minor-version-bump-message: "^(feat)(\\([\\w\\s-]*\\))?:"
patch-version-bump-message: "^(build|chore|ci|docs|fix|perf|refactor|revert|style|test)(\\([\\w\\s-]*\\))?:"
branches:
main:
regex: ^main$
mode: ContinuousDelivery
tag: ''
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
tracks-release-branches: false
is-release-branch: true
# Catch-all configuration for any other branch
feature:
regex: ^.*$
mode: ContinuousDeployment
tag: alpha.{BranchName}
increment: Inherit
track-merge-target: true
tracks-release-branches: false
is-release-branch: false