We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2dd6f commit 51c3f2aCopy full SHA for 51c3f2a
1 file changed
.github/workflows/lock.yml
@@ -0,0 +1,19 @@
1
+name: Lock Issues
2
+on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
+
7
+permissions:
8
+ issues: "write"
9
10
+jobs:
11
+ lock:
12
+ if: github.repository_owner == 'certifi'
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: dessant/lock-threads@v3
16
+ with:
17
+ github-token: ${{ secrets.GITHUB_TOKEN }}
18
+ issue-inactive-days: 90
19
+ pr-inactive-days: 90
0 commit comments