-
Notifications
You must be signed in to change notification settings - Fork 38
30 lines (27 loc) · 842 Bytes
/
Copy pathstale.yml
File metadata and controls
30 lines (27 loc) · 842 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
27
28
29
30
name: Close stale issues
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Run every day at midnight
permissions:
contents: read
jobs:
stale:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v11
with:
days-before-stale: 30
days-before-close: 7
# Pull requests never go stale: a patch is the contributor's
# gift and the maintainer's backlog.
days-before-pr-stale: -1
exempt-issue-labels: in progress,help-wanted,pinned,security,enhancement
stale-issue-message: >
This issue is stale because it has been open 30 days with no
activity. Remove the stale label or comment, or this will be
closed in 7 days.