Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5c2ff5 commit a74f71cCopy full SHA for a74f71c
.github/workflows/lock.yaml
@@ -1,15 +1,25 @@
1
name: 'Lock threads'
2
+# Lock closed issues that have not received any further activity for
3
+# two weeks. This does not close open issues, only humans may do that.
4
+# We find that it is easier to respond to new issues with fresh examples
5
+# rather than continuing discussions on old issues.
6
7
on:
8
schedule:
9
- cron: '0 0 * * *'
10
11
+permissions:
12
+ issues: write
13
+ pull-requests: write
14
+
15
+concurrency:
16
+ group: lock
17
18
jobs:
19
lock:
20
runs-on: ubuntu-latest
21
steps:
- - uses: dessant/lock-threads@v3
22
+ - uses: dessant/lock-threads@v4
23
with:
- github-token: ${{ github.token }}
24
issue-inactive-days: 14
25
pr-inactive-days: 14
0 commit comments