-
-
Notifications
You must be signed in to change notification settings - Fork 20
40 lines (32 loc) · 1.69 KB
/
gh-lock-issues.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
35
36
37
38
39
40
name: GitHub Lock Issues
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
action:
permissions:
issues: write
pull-requests: write
discussions: write
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5
with:
github-token: ${{ github.token }}
issue-inactive-days: '30'
issue-comment: |
## :lock: Inactive issue lock
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
_Comment generated by the [${{ github.workflow }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}) workflow._
pr-inactive-days: '30'
pr-comment: |
## :lock: Inactive pull request lock
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
_Comment generated by the [${{ github.workflow }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}) workflow._
discussion-inactive-days: '90'
exclude-any-discussion-labels: 'ongoing'
discussion-comment: |
## :lock: Inactive discussion lock
This discussion has been automatically locked since there has not been any recent activity after it was closed.
_Comment generated by the [${{ github.workflow }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}) workflow._