summaryrefslogtreecommitdiff
path: root/.github/release-drafter-config.yml
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2022-08-17 12:22:33 -0700
committerGitHub <noreply@github.com>2022-08-17 12:22:33 -0700
commitb808c0c206e4b1eabdbce2ee723df4258461d4da (patch)
tree4abf03c772f085499f386abe2b2e4c5a2236f707 /.github/release-drafter-config.yml
parent367a82bf02e8f3e198464edcb47fbba78b4d5824 (diff)
parent5c9b6b571ed6686be375d412d80b5714745ad831 (diff)
Merge pull request #1083 from chayim/ck-drafter
Support for generating release notes
Diffstat (limited to '.github/release-drafter-config.yml')
-rw-r--r--.github/release-drafter-config.yml49
1 files changed, 49 insertions, 0 deletions
diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml
new file mode 100644
index 0000000..de4fea7
--- /dev/null
+++ b/.github/release-drafter-config.yml
@@ -0,0 +1,49 @@
+name-template: '$NEXT_MAJOR_VERSION'
+tag-template: 'v$NEXT_MAJOR_VERSION'
+autolabeler:
+ - label: 'maintenance'
+ files:
+ - '*.md'
+ - '.github/*'
+ - label: 'bug'
+ branch:
+ - '/bug-.+'
+ - label: 'maintenance'
+ branch:
+ - '/maintenance-.+'
+ - label: 'feature'
+ branch:
+ - '/feature-.+'
+categories:
+ - title: 'Breaking Changes'
+ labels:
+ - 'breakingchange'
+
+ - title: '๐Ÿงช Experimental Features'
+ labels:
+ - 'experimental'
+ - title: '๐Ÿš€ New Features'
+ labels:
+ - 'feature'
+ - 'enhancement'
+ - title: '๐Ÿ› Bug Fixes'
+ labels:
+ - 'fix'
+ - 'bugfix'
+ - 'bug'
+ - 'BUG'
+ - title: '๐Ÿงฐ Maintenance'
+ label: 'maintenance'
+change-template: '- $TITLE (#$NUMBER)'
+exclude-labels:
+ - 'skip-changelog'
+template: |
+ ## Changes
+
+ $CHANGES
+
+ ## Contributors
+ We'd like to thank all the contributors who worked on this release!
+
+ $CONTRIBUTORS
+