add option to clean repository
This commit is contained in:
parent
4eb32b096e
commit
d1168cf533
1 changed files with 12 additions and 1 deletions
13
.github/workflows/clean_repository.yml
vendored
13
.github/workflows/clean_repository.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue