-
Notifications
You must be signed in to change notification settings - Fork 23
26 lines (23 loc) · 922 Bytes
/
stale-issue-pr.yml
File metadata and controls
26 lines (23 loc) · 922 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: stale-issue-pr
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Comment or this will be closed in 5 days.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Comment or this will be closed in 5 days.'
close-issue-message: 'This issue was automatically closed because it has been stalled for 5 days with no activity.'
close-pr-message: 'This PR was automatically closed because it has been stalled for 5 days with no activity.'
days-before-stale: 60
days-before-close: 5
exempt-all-pr-assignees: true
operations-per-run: 60