summaryrefslogtreecommitdiff
path: root/.github/workflows/lock.yml
blob: 4389c447f38a2f36b8229e9fdebe94ea98bcd411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: 'Lock Closed Issues'

on:
  schedule:
    - cron: '0 0 * * 1 '
  workflow_dispatch: # For manual cleanup

permissions:
  issues: write

concurrency:
  group: lock

jobs:
  action:
    runs-on: ubuntu-latest
    steps:
      - uses: dessant/lock-threads@v3
        with:
          process-only: 'issues'