Skip to content

Commit

Permalink
Adds closed issue locking workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Nov 25, 2020
1 parent 7621702 commit 2833dfb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/issues-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Lock closed issues'

on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-lock-comment: 'This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.'
issue-lock-inactive-days: 30
process-only: 'issues'

0 comments on commit 2833dfb

Please sign in to comment.