Skip to content

Commit a8abb76

Browse files
authored
Remove dead "Check PRs with 'CLA not signed' label" (#91429)
1 parent 08cfe07 commit a8abb76

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/stale.yml

+1-15
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- name: "Check PRs with 'CLA signed' label"
17+
- name: "Check PRs"
1818
uses: actions/stale@v4
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
21-
only-pr-labels: 'CLA signed'
2221
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'
2322
stale-pr-label: 'stale'
2423
days-before-stale: 30
2524
days-before-close: -1
2625
ascending: true
2726
operations-per-run: 120
28-
29-
- name: "Check PRs with 'CLA not signed' label"
30-
uses: actions/stale@v4
31-
with:
32-
repo-token: ${{ secrets.GITHUB_TOKEN }}
33-
only-pr-labels: 'CLA not signed'
34-
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'
35-
stale-pr-label: 'stale'
36-
close-pr-message: 'Closing this stale PR because the CLA is still not signed.'
37-
days-before-stale: 30
38-
days-before-close: 14
39-
ascending: true
40-
operations-per-run: 120

0 commit comments

Comments
 (0)