From d1168cf533bd1d0dfe58ab5cb093d4428ef0771b Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Sat, 7 Dec 2024 01:07:56 +0100 Subject: [PATCH] add option to clean repository --- .github/workflows/clean_repository.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clean_repository.yml b/.github/workflows/clean_repository.yml index ccadffc..1ec8986 100644 --- a/.github/workflows/clean_repository.yml +++ b/.github/workflows/clean_repository.yml @@ -3,6 +3,17 @@ on: schedule: - cron: '45 11 * * 0' workflow_dispatch: + inputs: + days: + description: 'retain days' + required: true + default: 15 + type: choice + options: + - 1 + - 2 + - 7 + - 15 jobs: del_runs: @@ -16,5 +27,5 @@ jobs: with: token: ${{ github.token }} repository: ${{ github.repository }} - retain_days: 30 + retain_days: ${{ github.event.inputs.days }} keep_minimum_runs: 7