|
1 | 1 | enforce-v0: true # don't make breaking-change label bump major version before 1.0.
|
| 2 | + |
| 3 | +github: |
| 4 | + # (env: CHRONICLE_GITHUB_HOST) |
| 5 | + host: 'github.com' |
| 6 | + |
| 7 | + # (env: CHRONICLE_GITHUB_EXCLUDE_LABELS) |
| 8 | + exclude-labels: |
| 9 | + - 'duplicate' |
| 10 | + - 'question' |
| 11 | + - 'invalid' |
| 12 | + - 'wontfix' |
| 13 | + - 'wont-fix' |
| 14 | + - 'release-ignore' |
| 15 | + - 'changelog-ignore' |
| 16 | + - 'ignore' |
| 17 | + |
| 18 | + # (env: CHRONICLE_GITHUB_INCLUDE_ISSUE_PR_AUTHORS) |
| 19 | + include-issue-pr-authors: true |
| 20 | + |
| 21 | + # (env: CHRONICLE_GITHUB_INCLUDE_ISSUE_PRS) |
| 22 | + include-issue-prs: true |
| 23 | + |
| 24 | + # (env: CHRONICLE_GITHUB_INCLUDE_ISSUES_NOT_PLANNED) |
| 25 | + include-issues-not-planned: false |
| 26 | + |
| 27 | + # (env: CHRONICLE_GITHUB_INCLUDE_PRS) |
| 28 | + include-prs: true |
| 29 | + |
| 30 | + # (env: CHRONICLE_GITHUB_INCLUDE_ISSUES) |
| 31 | + include-issues: true |
| 32 | + |
| 33 | + # (env: CHRONICLE_GITHUB_INCLUDE_UNLABELED_ISSUES) |
| 34 | + include-unlabeled-issues: true |
| 35 | + |
| 36 | + # (env: CHRONICLE_GITHUB_INCLUDE_UNLABELED_PRS) |
| 37 | + include-unlabeled-prs: true |
| 38 | + |
| 39 | + # (env: CHRONICLE_GITHUB_ISSUES_REQUIRE_LINKED_PRS) |
| 40 | + issues-require-linked-prs: false |
| 41 | + |
| 42 | + # (env: CHRONICLE_GITHUB_CONSIDER_PR_MERGE_COMMITS) |
| 43 | + consider-pr-merge-commits: true |
| 44 | + |
| 45 | + # (env: CHRONICLE_GITHUB_CHANGES) |
| 46 | + changes: |
| 47 | + - name: 'security-fixes' |
| 48 | + title: 'Security Fixes' |
| 49 | + semver-field: 'patch' |
| 50 | + labels: |
| 51 | + - 'security' |
| 52 | + - 'vulnerability' |
| 53 | + |
| 54 | + - name: 'added-feature' |
| 55 | + title: 'Added Features' |
| 56 | + semver-field: 'minor' |
| 57 | + labels: |
| 58 | + - 'enhancement' |
| 59 | + - 'feature' |
| 60 | + - 'minor' |
| 61 | + |
| 62 | + - name: 'bug-fix' |
| 63 | + title: 'Bug Fixes' |
| 64 | + semver-field: 'patch' |
| 65 | + labels: |
| 66 | + - 'bug' |
| 67 | + - 'fix' |
| 68 | + - 'bug-fix' |
| 69 | + - 'patch' |
| 70 | + |
| 71 | + - name: 'dependencies' |
| 72 | + title: 'Dependency Updates' |
| 73 | + semver-field: 'patch' |
| 74 | + labels: |
| 75 | + - 'dependencies' |
| 76 | + |
| 77 | + - name: 'breaking-feature' |
| 78 | + title: 'Breaking Changes' |
| 79 | + semver-field: 'major' |
| 80 | + labels: |
| 81 | + - 'breaking' |
| 82 | + - 'backwards-incompatible' |
| 83 | + - 'breaking-change' |
| 84 | + - 'breaking-feature' |
| 85 | + - 'major' |
| 86 | + |
| 87 | + - name: 'removed-feature' |
| 88 | + title: 'Removed Features' |
| 89 | + semver-field: 'major' |
| 90 | + labels: |
| 91 | + - 'removed' |
| 92 | + |
| 93 | + - name: 'deprecated-feature' |
| 94 | + title: 'Deprecated Features' |
| 95 | + semver-field: 'minor' |
| 96 | + labels: |
| 97 | + - 'deprecated' |
| 98 | + |
| 99 | + - name: 'unknown' |
| 100 | + title: 'Additional Changes' |
| 101 | + semver-field: '' |
| 102 | + labels: [] |
0 commit comments