Skip to content

Commit

Permalink
ci: lock closed issues automatically after 90 days
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tulir committed Sep 24, 2024
1 parent 4727da4 commit 5d43fce
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Lock old issues'

on:
schedule:
- cron: '0 * * * *'
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
issue-inactive-days: 90
process-only: issues

0 comments on commit 5d43fce

Please sign in to comment.