forked from luraproject/lura
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 898 Bytes
/
lock-threads.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: 'Lock Threads'
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
concurrency:
group: lock
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v3
with:
pr-inactive-days: '90'
issue-inactive-days: '90'
add-issue-labels: 'locked'
issue-comment: >
This issue was marked as resolved a long time ago and now has been
automatically locked as there has not been any recent activity after it.
You can still open a new issue and reference this link.
pr-comment: >
This pull request was marked as resolved a long time ago and now has been
automatically locked as there has not been any recent activity after it.
You can still open a new issue and reference this link.