From 7c4491ac6c013c6b53462160d98323ba8ddec32b Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Tue, 3 Dec 2024 19:08:07 +0100 Subject: [PATCH] add workflows to clean up repository (WIP) --- .github/workflows/clean_repository.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/clean_repository.yml diff --git a/.github/workflows/clean_repository.yml b/.github/workflows/clean_repository.yml new file mode 100644 index 0000000..ccadffc --- /dev/null +++ b/.github/workflows/clean_repository.yml @@ -0,0 +1,20 @@ +name: Delete old workflow runs +on: + schedule: + - cron: '45 11 * * 0' + workflow_dispatch: + +jobs: + del_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: 30 + keep_minimum_runs: 7