Skip to content

Commit c5a33e5

Browse files
committed
Lock conversations of closed issues/prs after 90 days of inactivity
1 parent 17aed1b commit c5a33e5

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222

2323
- name: Lint markdown files
24-
uses: nosborn/github-action-markdown-cli@v3.2.0
24+
uses: nosborn/github-action-markdown-cli@v3
2525
with:
2626
files: .
2727
ignore_path: .markdownlintignore

0 commit comments

Comments
 (0)