Skip to content

Auto cleaning of workflow logs #17

Auto cleaning of workflow logs

Auto cleaning of workflow logs #17

name: 'Auto cleaning of workflow logs'
on:
schedule:
- cron: '0 20 * * 0'
workflow_dispatch:
jobs:
del_runs:
runs-on: ubuntu-latest
steps:
- name: Delete Workflow Runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 1
keep_minimum_runs: 0