forked from near/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (24 loc) · 874 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Close Stale Issues & Pull Requests
on:
schedule:
- cron: '0 0 * * 5' # Run at midnight on Fridays
permissions:
issues: write
pull-requests: write
jobs:
close_stale_prs:
runs-on: ubuntu-latest
steps:
- name: Close stale pull requests
uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 180
days-before-pr-stale: 45
days-before-close: 0
close-issue-message: 'This issue has been automatically closed because it has been
inactive for more than 180 days. Please reopen and prioritize this for development if it is
essential.'
close-pr-message: 'This pull request has been automatically closed because it has been
inactive for more than 45 days. Please reopen and see this PR through its review if it is
essential.'