summaryrefslogtreecommitdiffstats
path: root/.github/workflows/remove_old_artifacts.yml
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2023-04-30 18:30:36 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2023-04-30 18:30:36 -0400
commit3565aad630864ecdbe53fdaa501ea708555b3c7c (patch)
treec743e4ad0bad39ebdb2f514c7cc52d34a257ebbe /.github/workflows/remove_old_artifacts.yml
parent1fdc150116cad39aae5c5da407c3312b47a59e3a (diff)
New upstream version 3.4.4+dfsg.upstream/3.4.4+dfsg
Diffstat (limited to '.github/workflows/remove_old_artifacts.yml')
-rw-r--r--.github/workflows/remove_old_artifacts.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/remove_old_artifacts.yml b/.github/workflows/remove_old_artifacts.yml
new file mode 100644
index 0000000..79a23c4
--- /dev/null
+++ b/.github/workflows/remove_old_artifacts.yml
@@ -0,0 +1,19 @@
+name: Remove old artifacts
+
+on:
+ workflow_dispatch:
+ inputs:
+ 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: '10 days' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js