mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-29 08:19:34 +08:00
18 lines
283 B
YAML
18 lines
283 B
YAML
name: clean-up
|
|
|
|
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
|
|
with:
|
|
age: '1 week'
|