Skip to content

Clear cache weekly

Clear cache weekly #22

name: Clear cache weekly
on:
schedule:
# on Sundays
- cron: "0 0 * * 0"
workflow_dispatch:
inputs:
pattern:
description: 'patter for cleaning cache'
default: "pip"
required: false
type: string
jobs:
cron-clear:
if: github.event_name == 'schedule'
uses: ./.github/workflows/clear-cache.yml
with:
pattern: 'pip|conda'
direct-clear:
if: github.event_name == 'workflow_dispatch'
uses: ./.github/workflows/clear-cache.yml
with:
pattern: ${{ inputs.pattern }}