diff options
Diffstat (limited to '.github/workflows/cleanup.yml')
-rw-r--r-- | .github/workflows/cleanup.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml new file mode 100644 index 00000000..5f71decf --- /dev/null +++ b/.github/workflows/cleanup.yml @@ -0,0 +1,13 @@ +name: cleanup +on: + schedule: + - cron: '15 4 * * *' + +jobs: + cleanup: + runs-on: ubuntu-latest + steps: + - name: Remove build artifacts + uses: c-hive/gha-remove-artifacts@v1 + with: + age: '1 minute' |