|
1 | | -workflow: GitHubFlow/v1 |
2 | | -mode: ContinuousDeployment |
3 | | -version-in-branch-pattern: '^(?<Major>0|[1-9]\d*)$' |
4 | | -minor-version-bump-message: '^(semver:\s*feature|semver:\s*minor|feature:|feat:)' |
| 1 | +workflow: '' |
| 2 | +assembly-versioning-scheme: MajorMinorPatch |
| 3 | +assembly-file-versioning-scheme: MajorMinorPatch |
| 4 | +tag-prefix: '[vV]?' |
| 5 | +commit-date-format: 'yyyy-MM-dd' |
| 6 | +version-in-branch-pattern: '^(dev/)?v(?<version>\d+).*' |
| 7 | +tag-pre-release-weight: 60000 |
| 8 | +commit-message-incrementing: Enabled |
| 9 | + |
| 10 | +strategies: |
| 11 | + - VersionInBranchName |
| 12 | + - Fallback |
| 13 | + |
5 | 14 | branches: |
6 | | - version: |
7 | | - regex: ^v |
8 | | - label: "" |
9 | | - increment: Patch |
10 | | - is-release-branch: true |
11 | | - is-main-branch: true |
12 | | - source-branches: ["version-develop"] |
13 | | - version-develop: |
14 | | - regex: ^dev/v |
15 | | - mode: ContinuousDeployment |
16 | | - tag: alpha |
17 | | - increment: Patch |
18 | | - track-merge-target: true |
19 | | - is-source-branch-for: ["version"] |
20 | | - tracks-release-branches: true |
21 | | - is-release-branch: false |
22 | | - is-mainline: false |
| 15 | + release-vX: |
| 16 | + regex: '^v(?<version>\d+)$' |
| 17 | + mode: ContinuousDeployment |
| 18 | + label: '' |
| 19 | + increment: Patch |
| 20 | + is-main-branch: false |
| 21 | + prevent-increment: |
| 22 | + of-merged-branch: true |
| 23 | + source-branches: [ ] |
| 24 | + pre-release-weight: 55000 |
| 25 | + develop-vX: |
| 26 | + regex: '^dev\/v(?<version>\d+)$' |
| 27 | + mode: ContinuousDelivery |
| 28 | + label: 'alpha' |
| 29 | + increment: Patch |
| 30 | + source-branches: [ ] |
| 31 | + is-main-branch: false |
| 32 | + pre-release-weight: 30000 |
| 33 | + main: |
| 34 | + regex: ^master$|^main$ |
| 35 | + mode: ContinuousDelivery |
| 36 | + label: "" |
| 37 | + increment: Patch |
| 38 | + is-main-branch: true |
| 39 | + prevent-increment: |
| 40 | + of-merged-branch: true |
| 41 | + source-branches: [ ] |
| 42 | + pre-release-weight: 55000 |
| 43 | + pull-request: |
| 44 | + mode: ContinuousDelivery |
| 45 | + label: PullRequest{Number} |
| 46 | + increment: Inherit |
| 47 | + prevent-increment: |
| 48 | + of-merged-branch: false |
| 49 | + when-current-commit-tagged: false |
| 50 | + track-merge-message: true |
| 51 | + regex: ^(pull-requests|pull|pr)[\/-](?<Number>\d*) |
| 52 | + source-branches: |
| 53 | + - release-vX |
| 54 | + - develop-vX |
| 55 | + - main |
| 56 | + pre-release-weight: 30000 |
| 57 | + unknown: |
| 58 | + mode: ContinuousDelivery |
| 59 | + label: '{BranchName}' |
| 60 | + increment: Inherit |
| 61 | + prevent-increment: |
| 62 | + when-current-commit-tagged: true |
| 63 | + regex: (?<BranchName>.+) |
| 64 | + source-branches: |
| 65 | + - release-vX |
| 66 | + - develop-vX |
| 67 | + - pull-request |
| 68 | + - main |
| 69 | + pre-release-weight: 0 |
| 70 | + |
| 71 | +ignore: |
| 72 | + sha: [ ] |
| 73 | + paths: [ ] |
| 74 | + |
0 commit comments