-
Notifications
You must be signed in to change notification settings - Fork 45
/
.chronicle.yaml
102 lines (83 loc) · 2.27 KB
/
.chronicle.yaml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
enforce-v0: true # don't make breaking-change label bump major version before 1.0.
github:
# (env: CHRONICLE_GITHUB_HOST)
host: 'github.com'
# (env: CHRONICLE_GITHUB_EXCLUDE_LABELS)
exclude-labels:
- 'duplicate'
- 'question'
- 'invalid'
- 'wontfix'
- 'wont-fix'
- 'release-ignore'
- 'changelog-ignore'
- 'ignore'
# (env: CHRONICLE_GITHUB_INCLUDE_ISSUE_PR_AUTHORS)
include-issue-pr-authors: true
# (env: CHRONICLE_GITHUB_INCLUDE_ISSUE_PRS)
include-issue-prs: true
# (env: CHRONICLE_GITHUB_INCLUDE_ISSUES_NOT_PLANNED)
include-issues-not-planned: false
# (env: CHRONICLE_GITHUB_INCLUDE_PRS)
include-prs: true
# (env: CHRONICLE_GITHUB_INCLUDE_ISSUES)
include-issues: true
# (env: CHRONICLE_GITHUB_INCLUDE_UNLABELED_ISSUES)
include-unlabeled-issues: true
# (env: CHRONICLE_GITHUB_INCLUDE_UNLABELED_PRS)
include-unlabeled-prs: true
# (env: CHRONICLE_GITHUB_ISSUES_REQUIRE_LINKED_PRS)
issues-require-linked-prs: false
# (env: CHRONICLE_GITHUB_CONSIDER_PR_MERGE_COMMITS)
consider-pr-merge-commits: true
# (env: CHRONICLE_GITHUB_CHANGES)
changes:
- name: 'security-fixes'
title: 'Security Fixes'
semver-field: 'patch'
labels:
- 'security'
- 'vulnerability'
- name: 'added-feature'
title: 'Added Features'
semver-field: 'minor'
labels:
- 'enhancement'
- 'feature'
- 'minor'
- name: 'bug-fix'
title: 'Bug Fixes'
semver-field: 'patch'
labels:
- 'bug'
- 'fix'
- 'bug-fix'
- 'patch'
- name: 'dependencies'
title: 'Dependency Updates'
semver-field: 'patch'
labels:
- 'dependencies'
- name: 'breaking-feature'
title: 'Breaking Changes'
semver-field: 'major'
labels:
- 'breaking'
- 'backwards-incompatible'
- 'breaking-change'
- 'breaking-feature'
- 'major'
- name: 'removed-feature'
title: 'Removed Features'
semver-field: 'major'
labels:
- 'removed'
- name: 'deprecated-feature'
title: 'Deprecated Features'
semver-field: 'minor'
labels:
- 'deprecated'
- name: 'unknown'
title: 'Additional Changes'
semver-field: ''
labels: []