-
-
Notifications
You must be signed in to change notification settings - Fork 9
26 lines (24 loc) · 906 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
24
25
26
name: "Stale issue handler"
on:
workflow_dispatch:
schedule:
- cron: "40 23 * * *"
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-22.04
if: github.repository_owner == 'lukeshay'
steps:
- uses: actions/stale@v7
name: "Close stale issues with no reproduction"
with:
close-issue-message: "This issue has been automatically closed because it received no activity. If you think this was closed by accident, please leave a comment. If you are running into a similar issue, please open a new issue with a reproduction. Thank you."
days-before-issue-close: 7
days-before-issue-stale: 7
days-before-pr-close: -1
days-before-pr-stale: -1
exempt-issue-labels: "blocked,keep,needs triage"
only-labels: "needs more info"
operations-per-run: 300
stale-issue-label: "stale"