Skip to content

Commit

Permalink
Auto lock closes issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Jul 25, 2024
1 parent 775fdcb commit 1d92506
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lock-closed-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lock Closed Issues

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

permissions:
issues: write
pull-requests: write

concurrency:
group: lock

jobs:
lock:
runs-on: ubuntu-latest
steps:
- name: Lock closed issues
uses: dessant/lock-threads@v5
with:
github-token: ${{ github.token }}
issue-inactive-days: '30'

0 comments on commit 1d92506

Please sign in to comment.