We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d43bbe commit 7bdbd9cCopy full SHA for 7bdbd9c
.woodpecker.star
@@ -479,6 +479,10 @@ def main(ctx):
479
if ctx.build.event == "cron" and ctx.build.sender == "translation-sync":
480
return translation_sync(ctx)
481
482
+ is_release_pr = (ctx.build.event == "pull_request" and ctx.build.sender == "openclouders" and "🎉 release" in ctx.build.title.lower())
483
+ if is_release_pr:
484
+ return [licenseCheck(ctx)]
485
+
486
build_release_helpers = \
487
readyReleaseGo()
488
0 commit comments