-
Notifications
You must be signed in to change notification settings - Fork 27
23 lines (20 loc) · 861 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: '0 0 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has not been updated for a while and will be closed in 2 weeks. If it is still relevant, reply or remove the stale tag.'
stale-pr-message: 'This pull request has not been updated for a while and will be closed in 2 weeks. If it is still relevant, reply or remove the stale tag.'
close-issue-message: 'This issue has been automatically closed due to lack of recent activity.'
close-pr-message: 'This pull request has been automatically closed due to lack of recent activity.'
days-before-stale: 90
days-before-close: 14