.github/workflows: add CI run to lock closed threads.

Closed PRs will be locked after 90 days of inactivity, to avoid comments
on old inactive threads and encourage people to create new ones, which
will receive the proper attention.

Inspired by hook from fish-shell:
a36dbad3b8/.github/workflows/lockthreads.yml
This commit is contained in:
Érico Rolim 2021-03-02 23:44:30 -03:00 committed by Érico Nogueira Rolim
parent 5651179c2c
commit e03147ee62
1 changed files with 14 additions and 0 deletions

14
.github/workflows/lockthreads.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: 'Lock threads'
on:
schedule:
- cron: '0 18 * * *'
jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
with:
github-token: ${{ github.token }}
pr-lock-inactive-days: '90'