-
Notifications
You must be signed in to change notification settings - Fork 204
26 lines (24 loc) · 913 Bytes
/
stale.yml
File metadata and controls
26 lines (24 loc) · 913 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: Close Stale PRs
on:
schedule:
- cron: '30 1 * * *'
permissions: read-all
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10
with:
stale-pr-message: 'This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.'
stale-issue-message: This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.'
remove-stale-when-updated: true
exempt-pr-labels: "never-stale"
exempt-issue-labels: "never-stale"
# 1 month
days-before-stale: 31
# 1 month
days-before-close: 31
only-labels: 'waiting-on-response'