From 9ca41a7b6681fb6975383be003a367ffef9c2de4 Mon Sep 17 00:00:00 2001 From: Peter Adams <63288215+PeterAdams-A@users.noreply.github.com> Date: Thu, 24 Oct 2024 10:50:53 +0100 Subject: [PATCH] Config to enable release notes generation (#34) Motivation: Allow use of standard github tooling. Modifications: Add configuration for patch types. Result: GitHub release notes generation usable --- .github/release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..f96b514 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,14 @@ +changelog: + categories: + - title: SemVer Major + labels: + - ⚠️ semver/major + - title: SemVer Minor + labels: + - semver/minor + - title: SemVer Patch + labels: + - semver/patch + - title: Other Changes + labels: + - semver/none