From db05fcb6ab4a0d5b67c791cde019eb33a9faee06 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 9 Jun 2026 10:57:26 +0200 Subject: [PATCH] ci: fix translation sync trigger --- .woodpecker.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.star b/.woodpecker.star index 858364cf27..f7c9b841e3 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -503,7 +503,7 @@ def main(ctx): none """ - if ctx.build.event == "cron" and ctx.build.sender == "translation-sync": + if ctx.build.event == "cron" and ctx.build.cron == "translation-sync": return translation_sync(ctx) is_release_pr = (ctx.build.event == "pull_request" and "🎉 release" in ctx.build.title.lower())