-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitReleaseManager.yml
79 lines (76 loc) · 2.55 KB
/
GitReleaseManager.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# The directory where templates are located
templates-dir: .templates
# Configuration values used when creating new releases
create:
# Enable generation of footer content in the release notes. Extract the recommended templates by running 'init --templates' and edit the footer.sbn file to provide the wanted footer content.
include-footer: true
include-sha-section: false
sha-section-heading: SHA256 Hashes of the release artifacts
sha-section-line-format: '- `{1} {0}`'
allow-update-to-published: false
# Configuration values used when exporting release notes
export:
include-created-date-in-title: false
created-date-string-format: MMMM dd, yyyy
perform-regex-removal: false
regex-text: '### Where to get it(\r\n)*You can .*\.'
multiline-regex: false
# Configuration values used when closing a milestone
close:
# Whether to add comments to issues closed and with the published milestone release.
use-issue-comments: false
issue-comment: |-
:tada: This issue has been resolved in version {milestone} :tada:
The release is available on:
- [NuGet package(@{milestone})](https://nuget.org/packages/{repository}/{milestone})
- [GitHub release](https://github.com/{owner}/{repository}/releases/tag/{milestone})
Your **[GitReleaseManager](https://github.com/GitTools/GitReleaseManager)** bot :package::rocket:
# The name of the default branch.
default-branch: main
# Configuration values used when creating labels
labels:
- name: Breaking Change
description: Functionality breaking changes
color: b60205
- name: Bug
description: Something isn't working
color: ee0701
- name: Build
description: Build pipeline
color: 009800
- name: Documentation
description: Improvements or additions to documentation
color: d4c5f9
- name: Feature
description: Request for a new feature
color: 84b6eb
- name: Good First Issue
description: Good for newcomers
color: 7057ff
- name: Help Wanted
description: Extra attention is needed
color: 33aa3f
- name: Improvement
description: Improvement of an existing feature
color: 207de5
- name: Question
description: Further information is requested
color: cc317c
# The labels that will be used to include issues in release notes.
issue-labels-include:
- Breaking Change
- Bug
- Documentation
- Feature
- Good First Issue
- Help Wanted
- Improvement
- Question
# The labels that will NOT be used when including issues in release notes.
issue-labels-exclude:
- Build
# Overrides default pluralization and header names for specific labels.
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation