From c87cab7366a5b525006218b09a2204e4cd050760 Mon Sep 17 00:00:00 2001 From: Rishi Verma Date: Mon, 25 Mar 2024 20:59:32 -0700 Subject: [PATCH] Create release.yml Standardized release template for SLIM as described in https://github.com/NASA-AMMOS/slim/pull/149 --- .github/release.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 000000000..4038775d5 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,45 @@ +# .github/release.yml + +changelog: + exclude: # exclude any PRs labels we don't want in the changelog + labels: + - ignore-for-release + - skip-changelog + categories: # group PRs by your most important labels. Add / customize as needed. + - title: 🚀 Features + labels: + - enhancement + - title: 🐛 Bug Fixes + labels: + - bug + - title: 📚 Documentation + labels: + - documentation + - title: 📦 Dependencies + labels: + - dependencies + - title: 🏛 Governance + labels: + - governance + - title: 🔄 Software Lifecycle + labels: + - software-lifecycle + - title: 💬 Information Sharing + labels: + - information-sharing + - title: 🌐 Website + labels: + - website + - title: 💻 Other Changes + labels: + - "*" + exclude: # place the list of all labels you've categorized aboved to avoid duplication! + labels: + - enhancement + - bug + - documentation + - dependencies + - governance + - software-lifecycle + - information-sharing + - website