Files
xserver/.github/workflows/tidy-up-auto.yml
Enrico Weigelt, metux IT consult aa4fb3584c .github: tidy-up-auto: keep less minimum runs
reduce the number of minimum runs to be left to 2.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2025-09-02 15:03:23 +02:00

20 lines
524 B
YAML

name: delete old workflow runs
on:
schedule:
- cron: '0 0 * * *' # nightly
jobs:
delete_old_workflow_runs:
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
steps:
- name: delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 14
keep_minimum_runs: 2