Merge pull request #60483 from ClickHouse/ci_fix_pr_check

CI: fix pr check status to not fail mergeable check
This commit is contained in:
Max K 2024-02-28 12:24:15 +01:00 committed by GitHub
commit 6aaf2256ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@ from lambda_shared_package.lambda_shared.pr import (
check_pr_description,
)
from pr_info import PRInfo
from report import FAILURE, PENDING
from report import FAILURE, PENDING, SUCCESS
TRUSTED_ORG_IDS = {
54801242, # clickhouse
@ -180,6 +180,15 @@ def main():
)
print("::notice ::Cannot run")
sys.exit(1)
post_commit_status(
commit,
SUCCESS,
"",
"ok",
PR_CHECK,
pr_info,
)
ci_report_url = create_ci_report(pr_info, [])
print("::notice ::Can run")