-
-
Notifications
You must be signed in to change notification settings - Fork 121
21 lines (21 loc) · 791 Bytes
/
stale.yml
File metadata and controls
21 lines (21 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Close Stale Issues
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
This issue is marked as stale and will be closed in 90 days unless new activity is seen.
close-issue-message: >
This issue was closed because it has been stalled for 90 days with no activity.
Please feel free to reopen it if it is still a concern, possibly with additional data.
stale-issue-label: 'stale'
any-of-labels: 'awaiting answers,need info'
days-before-stale: 20
days-before-close: 90