mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Create delete-artifacts.yml
This commit is contained in:
parent
94571bb41b
commit
d0d2769548
1 changed files with 19 additions and 0 deletions
19
.github/workflows/delete-artifacts.yml
vendored
Normal file
19
.github/workflows/delete-artifacts.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
name: Remove old artifacts
|
||||||
|
|
||||||
|
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 month'
|
||||||
|
skip-tags: true
|
||||||
|
skip-recent: 3
|
||||||
Loading…
Add table
Add a link
Reference in a new issue