From cf15dd17c51e41de09bc39765ac05b310e6cef38 Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Tue, 6 Apr 2021 12:02:12 +0930 Subject: [PATCH] chore: set artifact deletion cron to 10 mins --- .github/workflows/cron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 5ff646cdc..169182fdb 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -2,7 +2,7 @@ name: 'Delete old artifacts' on: schedule: - - cron: '0 * * * *' # every hour + - cron: '*/10 * * * *' # every 10 mins jobs: delete-artifacts: @@ -12,4 +12,4 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} # Keep the last day's worth of builds - expire-in: 1day # Setting this to 0 will delete all artifacts \ No newline at end of file + expire-in: 1day # Setting this to 0 will delete all artifacts