From bf7162818724398103079c31420909427c396e37 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 17 Jul 2023 06:39:13 -0500 Subject: [PATCH] Add initial automated release notes config This is one of the steps towards automating release builds for this project. refs atc0005/todo#65 --- .github/release.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..aba0cea --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,30 @@ +# Copyright 2023 Adam Chalkley +# +# https://github.com/atc0005/check-restart +# +# Licensed under the MIT License. See LICENSE file in the project root for +# full license information. + +# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes + +changelog: + exclude: + labels: + - ignore-for-release + categories: + - title: Breaking Changes 🛠 + labels: + - breaking + - title: New Features or Enhancements 🎉 + labels: + - new + - enhancement + - title: Bug Fixes 🐛 + labels: + - bug + - title: Dependency Updates + labels: + - dependencies + - title: Other Changes + labels: + - "*"