-
Notifications
You must be signed in to change notification settings - Fork 25
26 lines (24 loc) · 990 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: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue has been marked as stale. Please reply to the issue or the issue will be automatically closed in 3 days.'
close-issue-message: 'This issue has been closed as there has been no recent activity after being marked as stale.'
days-before-stale: 7
days-before-close: 3
days-before-pr-close: -1
stale-issue-label: "status: stale"
only-issue-labels: 'awaiting response'
exempt-issue-labels: "status: confirmed, status: investigate, feature:request,fixed/release,fixed/dev,status: planned,question/discussion,priority/high,priority/medium,priority/low"
exempt-all-assignees: true
exempt-all-milestones: true