Skip to content

Commit

Permalink
fix: re-enable issue locking (#7220)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong authored Dec 4, 2024
1 parent 09f3fb9 commit cf08e94
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Lock Threads'

on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write
discussions: write

concurrency:
group: lock-threads

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5
with:
issue-inactive-days: '30'
pr-inactive-days: '30'
discussion-inactive-days: '30'

0 comments on commit cf08e94

Please sign in to comment.