-
Notifications
You must be signed in to change notification settings - Fork 31
28 lines (25 loc) · 823 Bytes
/
stale.yml
File metadata and controls
28 lines (25 loc) · 823 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
name: Close Stale PRs
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
concurrency:
group: stale-prs
cancel-in-progress: false
jobs:
stale:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-pr-stale: 30
days-before-pr-close: 7
days-before-issue-stale: -1
days-before-issue-close: -1
stale-pr-label: stale
stale-pr-message: "This PR has had no activity for 30 days and has been marked stale. It will be closed in 7 days if no further activity occurs."
close-pr-message: "Closing this PR due to inactivity. Feel free to reopen if you'd like to continue the work."
exempt-pr-labels: "no stale,security"
exempt-draft-pr: false