mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-12 10:48:39 +03:00
18 lines
361 B
YAML
18 lines
361 B
YAML
name: Clean Artifacts
|
|
on:
|
|
schedule:
|
|
# Once a day
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
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"
|
|
skip-tags: true
|
|
skip-recent: 5
|