CI: Fix job rerun check

This commit is contained in:
Max Kainov 2024-08-27 12:12:34 +02:00
parent d0c36c613d
commit 94f168e5ef

View File

@ -286,4 +286,6 @@ class Utils:
@staticmethod
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
)