summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPradyun Gedam <pradyunsg@gmail.com>2023-03-27 20:06:11 +0100
committerGitHub <noreply@github.com>2023-03-27 20:06:11 +0100
commit28239f9bf7c4c03dfbf8d12eb5cc3aa6ca3c0b08 (patch)
tree24013af8bcd59401b95d1491945f6ba2c4a6e0df /.github
parentdef5ba887e717344ab1cf5f05a3886a725d92418 (diff)
downloadpip-28239f9bf7c4c03dfbf8d12eb5cc3aa6ca3c0b08.tar.gz
Drop auto-labeling of PRs that are out of date (#11907)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/label-merge-conflicts.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/label-merge-conflicts.yml b/.github/workflows/label-merge-conflicts.yml
deleted file mode 100644
index 1de897ca1..000000000
--- a/.github/workflows/label-merge-conflicts.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Autolabel merge conflicts
-
-permissions:
- issues: write
- pull-requests: write
-
-on:
- push:
- branches: [main]
-
-jobs:
- label-merge-conflicts:
- if: github.repository_owner == 'pypa'
- runs-on: ubuntu-latest
- steps:
- - uses: pradyunsg/auto-label-merge-conflicts@v3
- with:
- CONFLICT_LABEL_NAME: "needs rebase or merge"
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}