From a000dd9612c92742af68dcda5c9d6e85e8feb83a Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Wed, 12 Mar 2025 10:20:35 +0100 Subject: [PATCH] fix: wrong trigger --- .woodpecker.star | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.woodpecker.star b/.woodpecker.star index bb8bb9425c..2d51320fbb 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -2086,9 +2086,14 @@ def notify(ctx): "depends_on": [], "when": [ { - "status": status, + "event": ["push", "manual"], + "branch": ["main", "release-*"], + }, + { + "event": "tag", }, ], + "runs_on": status, } def ocisServer(storage = "ocis", accounts_hash_difficulty = 4, volumes = [], depends_on = [], deploy_type = "", extra_server_environment = {}, with_wrapper = False, tika_enabled = False):