We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc92d01 commit 0f6d437Copy full SHA for 0f6d437
1 file changed
autolock-conversations.yml
@@ -0,0 +1,25 @@
1
+---
2
+
3
+name: 'Lock Threads'
4
5
+on: # yamllint disable-line rule:truthy
6
+ schedule:
7
+ - cron: '0 0 * * *'
8
+ workflow_dispatch:
9
10
+permissions:
11
+ issues: write
12
+ pull-requests: write
13
14
+concurrency:
15
+ group: lock
16
17
+jobs:
18
+ action:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: dessant/lock-threads@v5
22
+ with:
23
+ issue-inactive-days: '90'
24
+ pr-inactive-days: '90'
25
+ log-output: true
0 commit comments