From a2ae3b2b813a821985f89f1bdbefb2a040c0b8a7 Mon Sep 17 00:00:00 2001 From: Britta Stallknecht Date: Wed, 18 Dec 2024 13:10:43 +0000 Subject: [PATCH] feat: use minimal set of labels --- .github/settings.yml | 9 --------- .github/workflows/check-pr.yml | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index 650601a8b..5bf66b04c 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -10,9 +10,6 @@ repository: delete_branch_on_merge: true labels: - - name: breaking-change - color: "#16060F" - description: A breaking change - name: bug color: "#d73a4a" description: Something isn't working @@ -25,18 +22,12 @@ labels: - name: dependencies color: "#0366d6" description: Pull requests that update dependencies - - name: documentation - color: "#0075ca" - description: Improvements or additions to documentation - name: enhancement color: "#a2eeef" description: New feature or request - name: refactoring color: "#880361" description: Refactoring of code - - name: test - color: "#20D89D" - description: This pull request contains only new or changed tests - name: wip color: "#32BF4C" description: Work in Progress (blocks mergify from auto update the branch) diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index b37aa7de0..cf2050f0c 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -14,4 +14,4 @@ jobs: with: disable-reviews: true github-token: "${{ secrets.GITHUB_TOKEN }}" - valid-labels: "breaking-change, bug, chore, ci, dependencies, documentation, enhancement, refactoring, test" + valid-labels: "bug, chore, ci, dependencies, enhancement, refactoring"