We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17aed1b commit c5a33e5Copy full SHA for c5a33e5
2 files changed
.github/workflows/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@v4
22
+ with:
23
+ issue-inactive-days: '90'
24
+ pr-inactive-days: '90'
25
+ log-output: true
.github/workflows/documentation.yml
@@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- name: Lint markdown files
- uses: nosborn/github-action-markdown-cli@v3.2.0
+ uses: nosborn/github-action-markdown-cli@v3
with:
26
files: .
27
ignore_path: .markdownlintignore
0 commit comments