Files
ProxmoxVE/.github/workflows/lock-issue.yaml
2026-01-29 13:52:22 +01:00

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.