forked from mkaring/ConfuserEx
-
Notifications
You must be signed in to change notification settings - Fork 4
24 lines (21 loc) · 797 Bytes
/
Copy pathissue-stale.yml
File metadata and controls
24 lines (21 loc) · 797 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
name: "Close stale issues"
on:
schedule:
- cron: "00 4 * * *"
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-close: 7
days-before-stale: 14
only-labels: "feedback-required"
close-issue-message: "Closing this issue because it needs more information and has not had recent activity. Please re-open this issue if more details can be provided. Thanks!"
stale-issue-label: "inactive"
stale-issue-message: "This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks!"