From d867b6168801670e2f1eac2e17ef7673a9152720 Mon Sep 17 00:00:00 2001 From: Alice Cecile Date: Sat, 7 May 2022 06:20:13 +0000 Subject: [PATCH] Stop labeling PRs with Needs-Triage (#4686) # Objective - New PRs are labeled with Needs-Triage, but this is unhelpful and creates busy work: it's just as easy to check for unlabelled PRs, especially now that we no longer have an unlabelled backlog. Note: this is not true for issues. Issues start with at least one label based on which template they use, and so there's no good way to filter for issues that need attention from the triage team. ## Solution - Remove responsible CI tasks. --- .github/label-config.yml | 5 ----- .github/workflows/label.yml | 15 --------------- 2 files changed, 20 deletions(-) delete mode 100644 .github/label-config.yml delete mode 100644 .github/workflows/label.yml diff --git a/.github/label-config.yml b/.github/label-config.yml deleted file mode 100644 index d4becb1ec5..0000000000 --- a/.github/label-config.yml +++ /dev/null @@ -1,5 +0,0 @@ -# Config for the label workflow -# Schema: https://github.com/actions/labeler#create-githublabeleryml - -S-Needs-Triage: -- "**" diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml deleted file mode 100644 index fd16a55d86..0000000000 --- a/.github/workflows/label.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: PR-Labeler -on: - pull_request_target: - types: - - opened - -jobs: - label: - runs-on: ubuntu-latest - - steps: - - uses: actions/labeler@v4 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - configuration-path: .github/label-config.yml