🔒 Lock closed issues and PRs #604
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 closed issues and PRs | |
on: | |
schedule: | |
- cron: "30 2 * * *" | |
workflow_call: {} | |
permissions: | |
issues: write | |
pull-requests: write | |
concurrency: | |
group: lock | |
jobs: | |
lock: | |
name: 🔐 Lock closed issues and PRs | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/dessant/lock-threads#available-input-parameters | |
- uses: dessant/lock-threads@be8aa5be94131386884a6da4189effda9b14aa21 | |
with: | |
github-token: ${{ secrets.ORG_TOKEN }} | |
issue-inactive-days: "60" | |
issue-lock-reason: "" | |
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: "7" | |
pr-lock-reason: "" | |
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. | |
To build on this closed PR, you can clone it using this method: | |
- https://stackoverflow.com/a/14969986 | |
Then open a new PR, referencing this closed PR in your message. | |
- uses: dessant/lock-threads@be8aa5be94131386884a6da4189effda9b14aa21 | |
with: | |
github-token: ${{ secrets.ORG_TOKEN }} | |
exclude-any-pr-labels: "wip" | |
process-only: "prs" |