Merge pull request #68931 from ClickHouse/ci_job_rerun_fix

CI: Fix job rerun check
This commit is contained in:
Max K. 2024-08-27 11:17:04 +00:00 committed by GitHub
commit cd2e66ba58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -286,4 +286,7 @@ class Utils:
@staticmethod @staticmethod
def is_job_triggered_manually(): def is_job_triggered_manually():
return "robot" not in Envs.GITHUB_ACTOR return (
"robot" not in Envs.GITHUB_ACTOR
and "clickhouse-ci" not in Envs.GITHUB_ACTOR
)