debian-forge-cli/.github/workflows/stale-cleanup.yml
Tomáš Hozza 0013049d26 GHA: add the common-stale-action
Add the common-stale-action for marking issues and PRs as stale. This is
consistent with all osbuild group projects.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
2025-06-18 15:41:30 +02:00

17 lines
410 B
YAML

name: Mark and close stale issues and PRs
on: # yamllint disable-line rule:truthy
schedule:
- cron: '0 4 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
actions: write # needed to clean up the saved action state
issues: write
pull-requests: write
steps:
- uses: osbuild/common-stale-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}