-
-
Notifications
You must be signed in to change notification settings - Fork 102
32 lines (28 loc) · 1.17 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
31
name: 'Mark Stale Issues and PRs'
on:
schedule:
- cron: '27 11 1 * 1'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-issue-stale: 120
days-before-issue-close: 3
stale-issue-message: >
This issue has been automatically marked as `stale` because it has not had
recent activity. It will be closed within 3 days if no further activity occurs.
Thank you for your contributions.
close-issue-message: 'Closing because of being stalled for 3 days without activity.'
stale-issue-label: 'wontfix'
exempt-issue-labels: documentation, enhancement, feature, bug
stale-pr-message: >
This PR has been automatically marked as `stale` because it has not had
recent activity. Please review the PR if it is still relevant.
If you still would like it to be merged please add a comment to the PR.
Otherwise, it will be closed within 3 days.
Thank you for your contributions.
days-before-pr-stale: 90
days-before-pr-close: 3
stale-pr-label: 'wontfix'