Lock stale threads #1053
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lock stale threads | |
on: | |
schedule: | |
- cron: "37 2 * * *" # Every day at 2:37 AM UTC | |
workflow_dispatch: | |
permissions: | |
issues: write | |
concurrency: | |
group: lock | |
jobs: | |
action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Lock stale threads | |
uses: dessant/lock-threads@main | |
with: | |
github-token: ${{ github.token }} | |
issue-inactive-days: 60 | |
process-only: issues | |
exclude-any-issue-labels: "wip, help-wanted" | |
log-output: false | |
issue-comment: >- | |
This issue has been automatically locked due to inactivity. | |
Please open a new issue for related bugs. |