mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Mark stale pull requests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'python'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "Check PRs with 'CLA signed' label"
|
|
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
|