From 1f285f64926d6ff2911e65766fffc9e81704d514 Mon Sep 17 00:00:00 2001
From: Peter Kurfer <peter@icb4dc0.de>
Date: Thu, 13 Feb 2025 13:08:57 +0100
Subject: [PATCH] chore(postgres): schedule new image every week

---
 .github/workflows/postgres.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml
index 258f692..d3f89c7 100644
--- a/.github/workflows/postgres.yml
+++ b/.github/workflows/postgres.yml
@@ -1,7 +1,11 @@
 name: Postgres image
 on:
+  schedule:
+    # every Thursday 2:30am
+    - cron: "30 2 * * 2"
   push:
     paths:
+      - .github/workflows/postgres.yml
       - postgres/**
     branches:
       - main