generated from scottgriv/PRG-Gold-Tier-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 995 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
27
28
---
name: "Close stale Issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
start-date: "2023-07-01T00:00:00Z"
close-issue-message: "This **Issue** has been automatically closed because it has had no new activity for a month."
close-pr-message: "This **Pull-Request** has been automatically closed because it has had no new activity for a month."
stale-issue-message: "This **Issue** has not been updated for a while and will be closed soon."
stale-pr-message: "This **Pull-Request** has not been updated for a while and will be closed soon."
days-before-stale: 60
days-before-close: 10
exempt-all-milestones: true
exempt-issue-labels: security
exempt-pr-labels: security
stale-issue-label: stale
stale-pr-label: stale