ci: fix translation sync trigger

This commit is contained in:
Benedikt Kulmann
2026-06-09 10:57:26 +02:00
parent 4414bd0d08
commit db05fcb6ab

View File

@@ -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())