From 91da6607869926913eea38b72c2a1b4964010cf9 Mon Sep 17 00:00:00 2001 From: Webber Takken Date: Mon, 28 Sep 2020 19:19:18 +0200 Subject: [PATCH] remove artifacts older than 21 days (#157) --- .github/workflows/cleanup.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/cleanup.yml diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml new file mode 100644 index 00000000..f60c0434 --- /dev/null +++ b/.github/workflows/cleanup.yml @@ -0,0 +1,13 @@ +name: Delete old artifacts +on: + schedule: + - cron: '30 10 * * *' # every day at 10:30 + +jobs: + delete-artifacts: + runs-on: ubuntu-latest + steps: + - uses: kolpav/purge-artifacts-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + expire-in: 21 days