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

permissions:
  issues: "write"

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