f0a1779cc2
Bumps [c-hive/gha-remove-artifacts](https://github.com/c-hive/gha-remove-artifacts) from 1 to 1.2.0. - [Release notes](https://github.com/c-hive/gha-remove-artifacts/releases) - [Commits](https://github.com/c-hive/gha-remove-artifacts/compare/v1...v1.2.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
416 B
YAML
20 lines
416 B
YAML
name: Remove old artifacts
|
|
# Remove old artifacts runs a crob job that removes old artifacts
|
|
# generated from the split tests workflow.
|
|
|
|
on:
|
|
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.2.0
|
|
with:
|
|
age: "7 days"
|