-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (30 loc) · 1.21 KB
/
stale.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
28
29
30
name: Close Stale Issues and PRs
'on':
schedule:
- cron: 0 0 * * *
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
days-before-stale: 30
days-before-close: 5
stale-issue-message: >-
This issue has been automatically flagged as stale due to a lack of
recent updates. It will be closed if no further activity is
observed. We appreciate your contributions.
stale-pr-message: >-
This pull request has been automatically flagged as stale due to a
lack of recent updates. It will be closed if no further activity is
observed. We appreciate your contributions.
close-issue-message: >-
This issue has been closed due to inactivity. Please feel free to
reopen if further action is required or additional information is
provided.
close-pr-message: >-
This pull request has been closed due to inactivity. Please feel
free to reopen if further action is required or additional
information is provided.
exempt-issue-labels: in-progress
exempt-pr-labels: in-progress