From 958db3821e3e162114b9582d35960eba6bedf5e2 Mon Sep 17 00:00:00 2001 From: Guillaume Paran Date: Sat, 2 Apr 2022 06:52:42 +0200 Subject: [PATCH] Create remove-old-artifacts.yml --- .github/workflows/remove-old-artifacts.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/remove-old-artifacts.yml diff --git a/.github/workflows/remove-old-artifacts.yml b/.github/workflows/remove-old-artifacts.yml new file mode 100644 index 000000000..188139512 --- /dev/null +++ b/.github/workflows/remove-old-artifacts.yml @@ -0,0 +1,21 @@ +name: Remove old artifacts + +on: + workflow_dispatch: + 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: '1 day' # ' ', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js + # Optional inputs + # skip-tags: true + # skip-recent: 5