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