From 4da9af0e41675a002f846e4fb7455081576bcbf4 Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 10 May 2024 19:32:01 +0200 Subject: [PATCH] [skip ci] add workflow for release notes --- .github/release.yml | 21 +++++++++++++++++++++ .github/workflows/copy-issues-labels.yml | 1 + 2 files changed, 22 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000000..c9de8448b3 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,21 @@ +changelog: + categories: + - title: 🚀 New Features + labels: + - client feature + - feature + - title: 🐛 Bug Fixes + labels: + - bug + - title: ⚡ Performance Improvements + labels: + - performance + - title: 📦 Dependencies Updates + labels: + - dependencies + - title: 🚨 Changes in ENV variables + labels: + - ENVs + - title: ✨ Other Changes + labels: + - "*" \ No newline at end of file diff --git a/.github/workflows/copy-issues-labels.yml b/.github/workflows/copy-issues-labels.yml index eaa706dc5b..69896dd051 100644 --- a/.github/workflows/copy-issues-labels.yml +++ b/.github/workflows/copy-issues-labels.yml @@ -39,6 +39,7 @@ jobs: 'enhancement', 'refactoring', 'tech', + 'ENVs', ] const labels = await Promise.all(issues.map(getIssueLabels));