This commit is contained in:
Jerome Laban 2022-04-12 13:23:54 -04:00
Родитель 00c7d8bde4
Коммит 7df2d21559
1 изменённых файлов: 52 добавлений и 11 удалений

Просмотреть файл

@ -1,21 +1,62 @@
assembly-versioning-scheme: MajorMinorPatch
mode: ContinuousDeployment
next-version: 1.0.0
continuous-delivery-fallback-tag: ""
mode: Mainline
# Don't use next-version with Mainline (changed since 5.3), otherwise the stable
# branch will not count on commits, only on tags.
# See https://github.com/GitTools/GitVersion/issues/2461#issuecomment-733658087
# next-version: 4.0
branches:
master:
main:
mode: ContinuousDeployment
regex: main
tag: dev
increment: Minor
is-source-branch-for: ['beta', 'stable']
pull-request:
regex: ^(pull|pull\-requests|pr)[/-]
mode: ContinuousDeployment
tag: 'PullRequest'
tag-number-pattern: '[/-](?<number>\d+)[-/]'
increment: Inherit
beta:
mode: ContinuousDeployment
regex: ^release/beta/.*
tag: beta
increment: none
source-branches: ['main']
stable:
tag: ""
regex: stable
source-branches: ['master']
regex: ^release/stable/.*
tag: ''
increment: Patch
source-branches: ['main','beta']
is-mainline: true
dev:
mode: ContinuousDeployment
regex: ^dev/.*?/(.*?)
tag: dev.{BranchName}
regex: dev/.*?/(.*?)
source-branches: ['master']
source-branches: ['main', 'stable', 'projects', 'feature']
increment: none
projects:
tag: proj-{BranchName}
regex: projects/(.*?)
source-branches: ['master']
regex: ^projects/(.*?)
source-branches: ['main']
increment: none
feature:
tag: feature.{BranchName}
regex: ^feature/(.*?)
source-branches: ['main']
increment: none
release:
# disable default release branch
regex: ignore
ignore:
sha: []