Compare commits

...

1 Commits

Author SHA1 Message Date
Artur Neumann
be5d504b97 ci: check version placeholder in release PR 2026-02-03 15:42:34 +05:45

View File

@@ -497,7 +497,8 @@ def main(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 ctx.build.sender == "openclouders" and "🎉 release" in ctx.build.title.lower())
if is_release_pr: if is_release_pr:
return licenseCheck(ctx) return checkVersionPlaceholder() + \
licenseCheck(ctx)
build_release_helpers = \ build_release_helpers = \
readyReleaseGo() readyReleaseGo()
@@ -523,7 +524,6 @@ def main(ctx):
testPipelines(ctx) testPipelines(ctx)
build_release_pipelines = \ build_release_pipelines = \
checkVersionPlaceholder() + \
dockerReleases(ctx) + \ dockerReleases(ctx) + \
binaryReleases(ctx) binaryReleases(ctx)
@@ -1835,7 +1835,7 @@ def checkVersionPlaceholder():
}, },
], ],
"when": [ "when": [
event["tag"], event["pull_request"],
], ],
}] }]