From b9f0c68fdfeac48107a29236ea4067c1e0d0195c Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Tue, 9 Dec 2025 19:18:33 -0500 Subject: [PATCH 1/2] feat: generate release notes based on PR labels Example: https://github.com/JeffersonLab/iguana/releases/tag/v1.1.0 --- .github/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000000..b6c99a70a8 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,26 @@ +changelog: + categories: + - title: Bug Fixes + labels: [ bug ] + - title: AI Updates + labels: [ ai ] + - title: Calibration Updates + labels: [ calib ] + - title: GEMC Updates + labels: [ gemc ] + - title: Bank Schema Updates + labels: [ schema ] + - title: RG-L Updates + labels: [ rg-l ] + - title: Performance Updates + labels: [ speed ] + - title: CI Updates + labels: [ ci ] + - title: Java Updates + labels: [ java ] + - title: Maven Updates + labels: [ maven ] + - title: Dependency Updates + labels: [ dependencies ] + - title: Other Changes + labels: [ '*' ] From 6603e95a5841f2b4230c231669c198cb994bb3ca Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Tue, 9 Dec 2025 19:30:58 -0500 Subject: [PATCH 2/2] style: emojis --- .github/release.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index b6c99a70a8..156db40ac5 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -1,26 +1,26 @@ changelog: categories: - - title: Bug Fixes + - title: 🐛 Bug Fixes labels: [ bug ] - - title: AI Updates + - title: ✨ AI Updates labels: [ ai ] - - title: Calibration Updates + - title: ⚙️ Calibration Updates labels: [ calib ] - - title: GEMC Updates - labels: [ gemc ] - - title: Bank Schema Updates + - title: 💾 Bank Schema Updates labels: [ schema ] - - title: RG-L Updates + - title: 🔘 GEMC Updates + labels: [ gemc ] + - title: 🔘 RG-L Updates labels: [ rg-l ] - - title: Performance Updates + - title: 🚀 Performance Updates labels: [ speed ] - - title: CI Updates + - title: ▶️ CI Updates labels: [ ci ] - - title: Java Updates + - title: ☕ Java Updates labels: [ java ] - - title: Maven Updates + - title: 🔧 Maven Updates labels: [ maven ] - - title: Dependency Updates + - title: 📦 Dependency Updates labels: [ dependencies ] - - title: Other Changes + - title: 🔘 Other Changes labels: [ '*' ]