mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-03 20:03:25 +01:00
23 lines
595 B
YAML
Generated
23 lines
595 B
YAML
Generated
name: Lock closed issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 */6 * * *" # Run every 6 hours
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v6
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-inactive-days: 1
|
|
issue-lock-reason: "resolved"
|
|
issue-comment: |
|
|
This issue has been automatically locked since it has been closed for more than 1 day.
|
|
If you have a related issue, please open a new one and reference this issue if needed.
|