skip test related pipelines for ready-release-go PRs (#2011) (#2018)

Signed-off-by: prashant-gurung899 <prasantgrg777@gmail.com>
This commit is contained in:
Prashant Gurung
2025-12-12 03:44:13 -08:00
committed by GitHub
parent 1d43bbea17
commit 7bdbd9c474

View File

@@ -479,6 +479,10 @@ 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())
if is_release_pr:
return [licenseCheck(ctx)]
build_release_helpers = \
readyReleaseGo()