From 808fa563d7a8cf999f46fc8d6377878cbe395e86 Mon Sep 17 00:00:00 2001 From: Dustin Kaiser Date: Tue, 30 Nov 2021 09:48:56 +0100 Subject: [PATCH 1/3] Remove test-comment for CI --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7de5847eb606..672f670ac04e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -196,5 +196,3 @@ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. # - -#This is a test line by DK. Purpose is to check CI workflow. From 42b0ada72620190f22b714acf433fc7c64d09d97 Mon Sep 17 00:00:00 2001 From: Dustin Kaiser Date: Tue, 30 Nov 2021 10:02:02 +0100 Subject: [PATCH 2/3] Add emoticons from gitmoji to changelog-generation labes Document it in PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index af1ab1942440..ffff1b702e30 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -14,6 +14,19 @@ Consider prefix your PR message with an emoticon or from https://gitmoji.dev/ and append (⚠️ devops) if changes in devops configuration required before deploying + +Use the following github labels to tag your PR for github's automatic changelog generation: + +changelog:ignore-for-release +changelog:✨new-feature +changelog:🎨enhancement +changelog:♻️refactor +changelog:🐛bugfix +changelog:🔒️security +changelog:🔥removal +changelog:⚰️deprecation +changelog:⚠️devops + --> ## What do these changes do? From 71115b552b616027c16eb0c01b7e2eb86f13cc6a Mon Sep 17 00:00:00 2001 From: Dustin Kaiser Date: Tue, 30 Nov 2021 10:04:25 +0100 Subject: [PATCH 3/3] Add gitmojis to the changelog-labels --- .github/release.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index 9925b187338c..8fb58a993a97 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -8,16 +8,18 @@ changelog: categories: - Added: ✨ New Features labels: - - changelog:new-feature + - changelog:✨new-feature - Changed: ♻️ Changed and Improved Functionalities labels: - - changelog:enhancement - - changelog:refactor + - changelog:🎨enhancement + - changelog:♻️refactor - Fixed: 🐛 Bugfixes and Security Improvements labels: - - changelog:bugfix - - changelog:security + - changelog:🐛bugfix + - changelog:🔒️security - Removed: 🔥 Removed and Deprecated Features labels: - - changelog:removal - - changelog:deprecation + - changelog:🔥removal + - changelog:⚰️deprecation + - DevOps: Needs changes in the deployment's Ops-Pipeline + - changelog:⚠️devops