From 58f101ebc7054e3fd0de6af96c1e099b362ce40b Mon Sep 17 00:00:00 2001 From: Zack Stickles Date: Tue, 9 Jun 2020 15:36:04 -0700 Subject: [PATCH] Revert "Automatically add GitHub labels to PRs" --- .github/labeler.yml | 11 ----------- .github/workflows/label.yml | 10 ---------- 2 files changed, 21 deletions(-) delete mode 100644 .github/labeler.yml delete mode 100644 .github/workflows/label.yml diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 39531e1db..000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,11 +0,0 @@ -# Add "enhancement" label to any PR that contains files in the src -# directory (excluding the markdown pages directory. -enhancement: - - any: ['src/**/*', '!src/markdown-pages/**/*'] - -# Add "documentation" label to any PR that contains files in the -# markdown-pages directory. -documentation: - - any: ['src/markdown-pages/**/*'] - - diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml deleted file mode 100644 index f0d5d2420..000000000 --- a/.github/workflows/label.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: "Pull Request Labeler" -on: [pull_request] - -jobs: - label: - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@v2 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}"