mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 18:20:07 +00:00
22 lines
669 B
YAML
22 lines
669 B
YAML
name: Close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 8 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
name: Check stale issues
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
stale-issue-message: This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 14 days.
|
|
close-issue-message: This issue was closed because it has been stalled for 14 days with no activity.
|
|
days-before-issue-stale: 180
|
|
days-before-issue-close: 14
|
|
days-before-pr-close: -1 # never close PRs
|