diff options
Diffstat (limited to '.github/workflows/remove_old_artifacts.yml')
| -rw-r--r-- | .github/workflows/remove_old_artifacts.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/remove_old_artifacts.yml b/.github/workflows/remove_old_artifacts.yml new file mode 100644 index 0000000..79a23c4 --- /dev/null +++ b/.github/workflows/remove_old_artifacts.yml @@ -0,0 +1,19 @@ +name: Remove old artifacts + +on: + workflow_dispatch: + inputs: + schedule: + # Every day at 1am + - cron: '0 1 * * *' + +jobs: + remove-old-artifacts: + runs-on: ubuntu-latest + timeout-minutes: 10 + + steps: + - name: Remove old artifacts + uses: c-hive/gha-remove-artifacts@v1 + with: + age: '10 days' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js |
