-
Notifications
You must be signed in to change notification settings - Fork 5
34 lines (31 loc) · 1.14 KB
/
lock-threads.yml
File metadata and controls
34 lines (31 loc) · 1.14 KB
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@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.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.