From e49e3fa02b555b2abe17af8cfc5b15a1b381e1f1 Mon Sep 17 00:00:00 2001 From: staticdev Date: Sun, 5 Feb 2023 15:43:43 +0100 Subject: [PATCH] Add skip-changelog --- .github/labels.yml | 41 ++++++++++++++++++++----------------- .github/release-drafter.yml | 8 +++++--- 2 files changed, 27 insertions(+), 22 deletions(-) diff --git a/.github/labels.yml b/.github/labels.yml index f7f83aa..f5bf73f 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -6,61 +6,64 @@ # the GitHub Action https://github.com/marketplace/actions/github-labeler. - name: breaking description: Breaking Changes - color: bfd4f2 + color: "bfd4f2" - name: bug description: Something isn't working - color: d73a4a + color: "d73a4a" - name: build description: Build System and Dependencies - color: bfdadc + color: "bfdadc" - name: ci description: Continuous Integration - color: 4a97d6 + color: "4a97d6" - name: dependencies description: Pull requests that update a dependency file - color: 0366d6 + color: "0366d6" - name: documentation description: Improvements or additions to documentation - color: 0075ca + color: "0075ca" - name: duplicate description: This issue or pull request already exists - color: cfd3d7 + color: "cfd3d7" - name: enhancement description: New feature or request - color: a2eeef + color: "a2eeef" - name: github_actions description: Pull requests that update Github_actions code color: "000000" - name: good first issue description: Good for newcomers - color: 7057ff + color: "7057ff" - name: help wanted description: Extra attention is needed - color: 008672 + color: "008672" - name: invalid description: This doesn't seem right - color: e4e669 + color: "e4e669" - name: performance description: Performance color: "016175" - name: python description: Pull requests that update Python code - color: 2b67c6 + color: "2b67c6" - name: question description: Further information is requested - color: d876e3 + color: "d876e3" - name: refactoring description: Refactoring - color: ef67c4 + color: "ef67c4" - name: removal - description: Removals and Deprecations - color: 9ae7ea + description: Removals and deprecations + color: "9ae7ea" - name: style description: Style - color: c120e5 + color: "c120e5" - name: testing description: Testing - color: b1fc6f + color: "b1fc6f" - name: wontfix description: This will not be worked on - color: ffffff + color: "ffffff" +- name: skip-changelog + description: This will not be added to release notes + color: "dddddd" diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 7409c8d..c85211e 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,4 +1,7 @@ --- +template: | + ## Changes + $CHANGES categories: - title: ":boom: Breaking Changes" label: "breaking" @@ -26,7 +29,6 @@ categories: labels: - "dependencies" - "build" -template: | - ## Changes - $CHANGES +exclude-labels: + - "skip-changelog"