We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00289cb commit 99974aaCopy full SHA for 99974aa
.github/workflows/lock-closed-issues.yml
@@ -0,0 +1,23 @@
1
+name: 'Lock Issues'
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
7
+jobs:
8
+ lock:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: dessant/lock-threads@v2
12
+ with:
13
+ github-token: ${{ github.token }}
14
+ issue-lock-inactive-days: '31'
15
+ issue-exclude-created-before: ''
16
+ issue-exclude-labels: ''
17
+ issue-lock-labels: ''
18
+ issue-lock-comment: >
19
+ This thread has been automatically locked since there has not been
20
+ any recent activity after it was closed. Please open a new issue for
21
+ related bugs.
22
+ issue-lock-reason: 'resolved'
23
+ process-only: 'issues'
0 commit comments