From fd88b0f5d466cce21b3e1e881f9264cbb79099d8 Mon Sep 17 00:00:00 2001 From: Jannik Hollenbach Date: Wed, 4 Dec 2024 14:58:04 +0100 Subject: [PATCH 1/2] Replace release drafter config with build in github config Signed-off-by: Jannik Hollenbach --- .github/release-drafter.yml | 47 ------------------------------------- .github/release.yml | 37 +++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 47 deletions(-) delete mode 100644 .github/release-drafter.yml create mode 100644 .github/release.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index ccdde6fb0d..0000000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,47 +0,0 @@ -# SPDX-FileCopyrightText: the secureCodeBox authors -# -# SPDX-License-Identifier: Apache-2.0 - -name-template: "v$NEXT_PATCH_VERSION" -tag-template: "v$NEXT_PATCH_VERSION" -categories: - - title: "๐Ÿ’ฃ Breaking" - label: "breaking" - - title: "๐Ÿš€ Features" - label: "enhancement" - - title: "๐Ÿš“ Security Scanner" - label: "scanner" - - title: "โš“๏ธ Hooks" - label: "hook" - - title: "๐Ÿ› Bug Fixes" - label: "bug" - - title: "๐Ÿงช Test" - labels: - - "test" - - "testing" - - title: "๐Ÿ“š Documentation" - labels: - - "docs" - - "documentation" - - title: "๐Ÿ”ง Maintenance" - label: "maintenance" - - title: "๐Ÿ“Œ Dependencies" - label: "dependencies" -change-template: "- $TITLE @$AUTHOR (#$NUMBER)" -exclude-labels: - - "skip-changelog" -template: | - ## Changes - This release contains the following changes ๐ŸŽ‰. Help spread the word or leave a GitHub star if you like it ๐Ÿ˜‰ - - ![GitHub commits since tagged version](https://img.shields.io/github/commits-since/secureCodeBox/secureCodeBox/$PREVIOUS_TAG) ![GitHub Repo stars](https://img.shields.io/github/stars/secureCodeBox/secureCodeBox?style=social) ![Mastodon URL](https://img.shields.io/mastodon/follow/111902499714281911?domain=https%3A%2F%2Finfosec.exchange%2F) - - $CHANGES - - ## Distribution - [![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/secureCodeBox)](https://artifacthub.io/packages/search?repo=securecodebox) - [![Docker Hub](https://img.shields.io/badge/Docker%20Hub-secureCodeBox-blue?style=flat&logo=docker&color=lightblue&labelColor=blue&logoColor=white)](https://hub.docker.com/u/securecodebox) - - ## Contributors - Thanks to all our contributors supporting this project ๐Ÿค— - $CONTRIBUTORS diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000000..e4db1ec53b --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,37 @@ +changelog: + exclude: + labels: + - skip-changelog + categories: + - title: ๐Ÿ’ฃ Breaking + labels: + - breaking + - title: ๐Ÿš€ Features + labels: + - enhancement + - title: ๐Ÿš“ Security Scanner + labels: + - scanner + - title: โš“๏ธ Hooks + labels: + - hook + - title: ๐Ÿ› Bug Fixes + labels: + - bug + - title: ๐Ÿงช Test + labels: + - test + - testing + - title: ๐Ÿ“š Documentation + labels: + - docs + - documentation + - title: ๐Ÿ”ง Maintenance + labels: + - maintenance + - title: ๐Ÿ“Œ Dependencies + labels: + - dependencies + - title: Other Changes + labels: + - "*" From f64a66fa44bc7390be7e34d5ef94e937113622f7 Mon Sep 17 00:00:00 2001 From: Jannik Hollenbach Date: Wed, 4 Dec 2024 15:03:00 +0100 Subject: [PATCH 2/2] copy right header Signed-off-by: Jannik Hollenbach --- .github/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/release.yml b/.github/release.yml index e4db1ec53b..3af6c4d370 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: the secureCodeBox authors +# +# SPDX-License-Identifier: Apache-2.0 + changelog: exclude: labels: