Skip to content

Commit

Permalink
Remove dead "Check PRs with 'CLA not signed' label" (#91429)
Browse files Browse the repository at this point in the history
  • Loading branch information
arhadthedev authored Apr 11, 2022
1 parent 08cfe07 commit a8abb76
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a8abb76

Please sign in to comment.