-
Notifications
You must be signed in to change notification settings - Fork 1.2k
29 lines (27 loc) · 831 Bytes
/
stale.yml
File metadata and controls
29 lines (27 loc) · 831 Bytes
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
29
name: Close Stale Issues and PRs
on:
schedule:
# Every day at 00:00 UTC
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
actions: write
issues: write
pull-requests: write
steps:
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
with:
days-before-stale: 365
days-before-close: 30
stale-issue-label: stale
stale-pr-label: stale
stale-issue-message: |
This issue has been inactive for one year.
Marking as stale.
It will be closed after another 30 days of inactivity.
stale-pr-message: |
This PR has been inactive for one year.
Marking as stale.
It will be closed after another 30 days of inactivity.