From 52041933b8711e10f7a7d41ba9b55d66079040a2 Mon Sep 17 00:00:00 2001 From: Bjoern Hiller Date: Wed, 1 May 2024 17:53:11 +0200 Subject: [PATCH] Rebuild images once a month Additionally to manually triggering the pipeline to rebuild all images, we can also do it once a month to get the latest packages. This is especially beneficial on a rolling release distribution as Arch Linux. --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ffa35a4..9871595 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,10 @@ name: Build dunst CI images -# Run only when merged onto master +# Run only when merged onto master or once a month in order to get latest +# packages for each distribution. on: + schedule: + - cron: "42 3 15 * *" push: branches: [ 'master' ] workflow_dispatch: