From dd25834d224e96a2a1cf5ab9c5281978ab85d57c Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Mon, 30 Mar 2026 20:42:47 +0200 Subject: [PATCH] ability to commit to release pr (#2548) --- .woodpecker.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.star b/.woodpecker.star index 5dfa2a6b64..ad15bcfaac 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -495,7 +495,7 @@ def main(ctx): if ctx.build.event == "cron" and ctx.build.sender == "translation-sync": return translation_sync(ctx) - is_release_pr = (ctx.build.event == "pull_request" and ctx.build.sender == "openclouders" and "🎉 release" in ctx.build.title.lower()) + is_release_pr = (ctx.build.event == "pull_request" and "🎉 release" in ctx.build.title.lower()) if is_release_pr: return checkVersionPlaceholder() + \ licenseCheck(ctx) + \