-
-
Notifications
You must be signed in to change notification settings - Fork 255
23 lines (21 loc) · 1008 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
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '39 1 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
days-before-stale: 15
days-before-close: 15
stale-issue-message: 'This issue has been marked as stale because there was no activity for the past 15 days.'
stale-pr-message: 'This PR has been marked as stale because there was no activity for the past 15 days.'
close-issue-message: 'Closing this because there was no activity for the past 15 days. Feel free to reopen if new information pops up ✌️'
close-pr-message: 'Closing this because there was no activity for the past 15 days. Feel free to reopen if new information pops up ✌️'
exempt-issue-labels: Stale exempt, Good first issue, Help wanted, bug, RFC, Task
exempt-pr-labels: Stale exempt, Good first issue, Help wanted, bug, RFC, Task