-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 929 Bytes
/
Copy pathstale.yml
File metadata and controls
30 lines (27 loc) · 929 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: Stale
# Marks inactive issues/PRs stale, then closes them after a grace period.
on:
schedule:
- cron: "0 4 * * *" # daily 04:00 UTC
workflow_dispatch: {}
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 60
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: pinned,security,blocked
exempt-pr-labels: pinned,security,blocked
stale-issue-message: >
This issue has been inactive for 60 days and is now marked stale.
Comment to keep it open; it will close in 14 days otherwise.
stale-pr-message: >
This PR has been inactive for 60 days and is now marked stale.
Push or comment to keep it open; it will close in 14 days otherwise.