summaryrefslogtreecommitdiff
path: root/.github/workflows/lock.yml
blob: 7356bd4af3f9e29d2ca0f496a375d98ab00572bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Lock Issues
on:
  schedule:
    - cron: '0 0 * * *'

jobs:
  lock:
    runs-on: ubuntu-latest
    steps:
      - uses: dessant/lock-threads@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          issue-lock-inactive-days: 90
          pr-lock-inactive-days: 90