Remove dead "Check PRs with 'CLA not signed' label" (#91429)

This commit is contained in:
Oleg Iarygin 2022-04-11 19:34:17 +03:00 committed by GitHub
parent 08cfe07950
commit a8abb76af9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,27 +14,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: "Check PRs with 'CLA signed' label" - name: "Check PRs"
uses: actions/stale@v4 uses: actions/stale@v4
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} 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-message: 'This PR is stale because it has been open for 30 days with no activity.'
stale-pr-label: 'stale' stale-pr-label: 'stale'
days-before-stale: 30 days-before-stale: 30
days-before-close: -1 days-before-close: -1
ascending: true ascending: true
operations-per-run: 120 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