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 c67ea8c commit d91e5f8Copy full SHA for d91e5f8
.github/workflows/lock-issues.yml
@@ -0,0 +1,26 @@
1
+name: Lock Issues & PRs
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * 0' # Every Sunday
6
7
+jobs:
8
+ lock:
9
+ runs-on: ubuntu-latest
10
11
+ permissions:
12
+ issues: write
13
+ pull-requests: write
14
+ discussions: write
15
16
+ steps:
17
+ - name: Lock Issues & PRs
18
+ uses: dessant/lock-threads@v5
19
+ with:
20
+ github-token: ${{ github.token }}
21
+ issue-inactive-days: '91'
22
+ add-issue-labels: 'outdated'
23
+ pr-inactive-days: '91'
24
+ add-pr-labels: 'outdated'
25
+ discussion-inactive-days: '91'
26
+ add-discussion-labels: 'outdated'
0 commit comments