summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorOleg Iarygin <oleg@arhadthedev.net>2022-04-11 16:34:17 (GMT)
committerGitHub <noreply@github.com>2022-04-11 16:34:17 (GMT)
commita8abb76af92a5f6883a640a987f9f45b47ec852b (patch)
tree88e7fb0beb8b648a861f85d3b0fa643231af65d5 /.github
parent08cfe079503ffd19d8b7ab324f0fdb1c6b150ca8 (diff)
downloadcpython-a8abb76af92a5f6883a640a987f9f45b47ec852b.zip
cpython-a8abb76af92a5f6883a640a987f9f45b47ec852b.tar.gz
cpython-a8abb76af92a5f6883a640a987f9f45b47ec852b.tar.bz2
Remove dead "Check PRs with 'CLA not signed' label" (#91429)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml16
1 files changed, 1 insertions, 15 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 25e29e8..72a7a0b 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -14,27 +14,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- - name: "Check PRs with 'CLA signed' label"
+ - name: "Check PRs"
uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- only-pr-labels: 'CLA signed'
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'
stale-pr-label: 'stale'
days-before-stale: 30
days-before-close: -1
ascending: true
operations-per-run: 120
-
- - name: "Check PRs with 'CLA not signed' label"
- uses: actions/stale@v4
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- only-pr-labels: 'CLA not signed'
- stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. If the CLA is not signed within 14 days, it will be closed. See also https://devguide.python.org/pullrequest/#licensing'
- stale-pr-label: 'stale'
- close-pr-message: 'Closing this stale PR because the CLA is still not signed.'
- days-before-stale: 30
- days-before-close: 14
- ascending: true
- operations-per-run: 120