From bda94bd2784a8740728ab0f9a7874ff4ced0e86a Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Wed, 3 Apr 2024 22:54:06 -0700 Subject: [PATCH] Add release.yaml to help auto-populate release notes * Auto-populated release notes have a nice way of highlighting new contributors and sorting dependency updates to the bottom. I'll still keep the hand-written changelog notes at the top because they're written for those who want a better summary than just a bunch of PR titles * Remove the PR template since its often unused --- .github/PULL_REQUEST_TEMPLATE.md | 10 ---------- .github/release.yaml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/release.yaml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 6943ea7b..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,10 +0,0 @@ -High level description of the change. - -* Specific change -* Specific change - -## Testing - -Describe your work to validate the change works. - -rel: issue number (if applicable) diff --git a/.github/release.yaml b/.github/release.yaml new file mode 100644 index 00000000..3073b415 --- /dev/null +++ b/.github/release.yaml @@ -0,0 +1,12 @@ +changelog: + categories: + - title: Contributions + labels: + - '*' + exclude: + labels: + - dependencies + - no-release-note + - title: Dependencies + labels: + - dependencies