-
Notifications
You must be signed in to change notification settings - Fork 113
34 lines (31 loc) · 1.14 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
32
33
34
---
name: stale
on:
workflow_dispatch:
schedule:
- cron: "9 9 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
close-issue-message: |
This issue has not seen any activity since it was marked stale.
Closing.
close-pr-message: |
This pull request has not seen any activity since it was marked stale.
Closing.
exempt-issue-labels: good-first-issue,need-help,no-stale,pinned,security
exempt-pr-labels: "autorelease: pending,good-first-issue,need-help,no-stale,pinned,security"
stale-issue-label: stale
stale-issue-message: |
This issue is stale because it has been open 60 days with no activity.
Remove stale label or comment or this will be closed in 7 days
stale-pr-label: stale
stale-pr-message: |
This PR is stale because it has been open 60 days with no activity.
Remove stale label or comment or this will be closed in 7 days.