14 lines
273 B
YAML
14 lines
273 B
YAML
|
name: Clear cache weekly
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
# on Sundays
|
||
|
- cron: "0 0 * * 0"
|
||
|
|
||
|
jobs:
|
||
|
clear-cache:
|
||
|
if: ${{ github.repository_owner == 'Lightning-AI' }}
|
||
|
uses: Lightning-AI/utilities/.github/workflows/clear-cache.yml@main
|
||
|
with:
|
||
|
pattern: 'latest|docs'
|