-
-
Notifications
You must be signed in to change notification settings - Fork 52
26 lines (23 loc) · 764 Bytes
/
stale.yml
File metadata and controls
26 lines (23 loc) · 764 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
name: Stale
on:
schedule:
- cron: 0 6 * * 1-5
permissions:
actions: write
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Close Stale Issues
uses: actions/stale@v10
with:
days-before-stale: 30
days-before-close: 7
exempt-all-issue-assignees: true
exempt-issue-labels: "help wanted,wontfix"
stale-issue-label: "stale"
stale-issue-message: >
This issue is unconfirmed, and has been labelled as `stale` due to inactivity.
It will be closed automatically if no further activity occurs.
A project maintainer can mark an issue as confirmed by adding the `help wanted` label, the `wontfix` label, or an assignee.