-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(workflows): add
lock-inactive-threads
- Loading branch information
1 parent
414e4ba
commit e139994
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Lock Inactive Threads | ||
# | ||
# References: | ||
# | ||
# - https://github.com/dessant/lock-threads | ||
|
||
--- | ||
name: lock-inactive-threads | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
jobs: | ||
lock: | ||
name: Lock inactive issues and pull requests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/lock-threads@v2 | ||
with: | ||
github-token: ${{ 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. Make sure to reference this issue. | ||
issue-lock-inactive-days: 30 | ||
pr-lock-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. Make sure to reference this issue. | ||
pr-lock-inactive-days: 30 |