mirror of
https://github.com/ilyakooo0/compaREST.git
synced 2024-11-27 11:14:40 +03:00
18 lines
321 B
YAML
18 lines
321 B
YAML
name: Remove old artifacts
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
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: '7 days'
|
|
skip-tags: true
|
|
skip-recent: 10
|