mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
20 lines
397 B
YAML
20 lines
397 B
YAML
|
|
name: delete old workflows
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 16 0/7 * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Delete workflow runs
|
|
uses: Mattraks/delete-workflow-runs@v2
|
|
continue-on-error: true
|
|
with:
|
|
token: ${{ github.token }}
|
|
repository: ${{ github.repository }}
|
|
retain_days: 30
|
|
keep_minimum_runs: 30
|