From 3565aad630864ecdbe53fdaa501ea708555b3c7c Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sun, 30 Apr 2023 18:30:36 -0400 Subject: New upstream version 3.4.4+dfsg. --- .github/workflows/remove_old_artifacts.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/remove_old_artifacts.yml (limited to '.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 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' # ' ', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js -- cgit v1.2.3