Autolock #154
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
# Locks closed issues and pull requests after a period of inactivity, to prevent spam and noise. | |
--- | |
name: Autolock | |
"on": | |
workflow_call: | |
schedule: | |
# Run weekly, every Monday at 8:43. | |
- cron: "43 8 * * 1" | |
jobs: | |
lock: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: dessant/lock-threads@v5.0.1 | |
with: | |
# Lock down after 3 months. | |
issue-inactive-days: '90' | |
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-inactive-days: '90' | |
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. |