]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove dead "Check PRs with 'CLA not signed' label" (#91429)
authorOleg Iarygin <oleg@arhadthedev.net>
Mon, 11 Apr 2022 16:34:17 +0000 (19:34 +0300)
committerGitHub <noreply@github.com>
Mon, 11 Apr 2022 16:34:17 +0000 (18:34 +0200)
.github/workflows/stale.yml

index 25e29e83dff2bd8c5fdde0c7c21536eb9cffc523..72a7a0ba9c83c7589385a2523afbfcdfab3d1e52 100644 (file)
@@ -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