Skip to content

Commit

Permalink
Add action to lock threads (#3679)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners committed Feb 3, 2022
1 parent 537901e commit 7cdd173
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lock-threads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Lock Threads'

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

permissions:
issues: write
pull-requests: write

concurrency:
group: lock

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v3
with:
issue-inactive-days: '90'
exclude-any-issue-labels: 'discussion,good first issue,help wanted'
issue-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.
pr-comment: >
This pull request has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.

0 comments on commit 7cdd173

Please sign in to comment.