Gcam-Services-Provider/.github/workflows/issues_stale.yml
Lukas Pieper ecfad66767 Setup a close stale issues action
Add workflow_dispatch trigger to issues_stale.yml
Only process 'waiting' issues with stale action
Set days before stale and close for issues to 14
Disable dry-run for stale issues action
2025-08-30 16:15:08 +02:00

21 lines
450 B
YAML

name: Close inactive issues
on:
workflow_dispatch:
schedule:
- cron: "0 6 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 14
days-before-close: 14
days-before-pr-stale: -1
days-before-pr-close: -1
any-of-labels: waiting