-
Notifications
You must be signed in to change notification settings - Fork 646
27 lines (23 loc) · 1.21 KB
/
close-stale-issues-prs.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
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '20 6 * * *'
permissions: read-all
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
with:
stale-issue-message: 'If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.'
stale-pr-message: 'If you would like us to look at this PR, please provide the requested information. If the information is not provided within the next 7 days this PR will be closed.'
close-issue-message: 'Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open.'
close-pr-message: 'Closing due to lack of requested feedback. If you would like us to look at this PR, please provide the requested information and we will re-open.'
stale-issue-label: 'status/need-feedback'
stale-pr-label: 'status/need-feedback'
only-labels: 'for/user-attention'
days-before-stale: 7
days-before-close: 7