-
-
Notifications
You must be signed in to change notification settings - Fork 15
18 lines (16 loc) · 834 Bytes
/
stale_prs.yml
File metadata and controls
18 lines (16 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Mark pull requests as stale
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being closed by a maintainer if it is not updated or reviews are not addressed. If your PR is closed as stale, feel free to open a new one after dealing with the issues. This may also be an indication that the maintainers do not have interest in this change, you can try to convince them otherwise, or persist in the doomed world you have created."
stale-pr-label: 'Stale'
exempt-pr-label: 'Needs Review'
days-before-stale: 100000
days-before-close: 5