-
Notifications
You must be signed in to change notification settings - Fork 84
24 lines (22 loc) · 820 Bytes
/
stale.yml
File metadata and controls
24 lines (22 loc) · 820 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
name: "Close stale pull requests"
on:
schedule:
- cron: "0 3 * * *"
permissions:
contents: read
jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-pr-message: 'This PR was marked stale due to lack of activity. It will be closed in 14 days.'
close-pr-message: 'Closed as inactive. Feel free to reopen if this PR is still being worked on.'
stale-issue-message: 'This issue was marked stale due to lack of activity. It will be closed in 14 days.'
close-issue-message: 'Closed as inactive. Feel free to reopen if this issue is still relevant.'
days-before-close: 14
exempt-pr-labels: 'no-stale'
exempt-issue-labels: 'no-stale'