From 3706eb995aa310e602f877d78f0dd67b1b377703 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Wed, 17 Jul 2024 15:48:55 -0400 Subject: [PATCH] Remove labeling of PRs with needs-qa (#9880) --- .../workflows/label-issue-pull-request.yml | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/label-issue-pull-request.yml diff --git a/.github/workflows/label-issue-pull-request.yml b/.github/workflows/label-issue-pull-request.yml deleted file mode 100644 index e52bba36d6..0000000000 --- a/.github/workflows/label-issue-pull-request.yml +++ /dev/null @@ -1,24 +0,0 @@ -# Runs creation of Pull Requests -# If the PR destination branch is main, add a needs-qa label unless created by renovate[bot] ---- -name: Label Issue Pull Request - -on: - pull_request: - types: - - opened # Check when PR is opened - paths-ignore: - - .github/workflows/** # We don't need QA on workflow changes - branches: - - 'main' # We only want to check when PRs target main - -jobs: - add-needs-qa-label: - runs-on: ubuntu-latest - if: ${{ github.actor != 'renovate[bot]' }} - steps: - - name: Add label to pull request - uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 # 1.0.4 - if: ${{ !github.event.pull_request.head.repo.fork }} - with: - add-labels: "needs-qa"