-
Notifications
You must be signed in to change notification settings - Fork 32
28 lines (27 loc) · 1.15 KB
/
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 and PRs'
on:
schedule:
- cron: '30 6 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-stale: 90
days-before-close: 14
stale-issue-message: 'This issue has been marked as stale due to no activity in the last 90 days. It will be closed in 14 days if no further activity occurs.'
stale-pr-message: 'This pull request has been marked as stale due to no activity in the last 90 days. It will be closed in 14 days if no further activity occurs.'
close-issue-message: 'Closing this issue as it has been stale for 14 days.'
close-pr-message: 'Closing this pull request as it has been stale for 14 days.'
operations-per-run: 30
remove-issue-stale-when-updated: true
remove-pr-stale-when-updated: true
exempt-issue-author: 'dependabot[bot]'
exempt-pr-author: 'dependabot[bot]'
exempt-issue-labels: 'Type: Feature Request,Stale Excerpt'
exempt-pr-labels: 'Stale Excerpt'