-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 863 Bytes
/
Copy pathstale.yml
File metadata and controls
28 lines (26 loc) · 863 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
name: 'Close stale issues'
on:
schedule:
- cron: '30 12 * * *'
workflow_dispatch:
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: >
There hasn't been any activity on this issue in the past 7 days.
It will be closed in 3 days if no further activity occurs.
close-issue-message: >
This issue was closed because there hasn't been any activity in the past 10 days.
Feel free to open it again if needed.
days-before-stale: 7
days-before-close: 3
days-before-pr-stale: -1
days-before-pr-close: -1
remove-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-labels: "no-stale,new feature,enhancement,bug,docs"