summaryrefslogtreecommitdiff
path: root/.github/workflows/lock.yml
blob: 2b39f20a7f6e0822a62754435493a7543dc7449e (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.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          issue-lock-inactive-days: 90
          pr-lock-inactive-days: 90