From bf0dbb22d1bcb542efa6d9906ba6f482fe86dfc7 Mon Sep 17 00:00:00 2001 From: Meni Yakove Date: Tue, 8 Apr 2025 09:39:56 +0300 Subject: [PATCH] _required_check_failed: add log for current check-run name --- webhook_server_container/libs/github_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webhook_server_container/libs/github_api.py b/webhook_server_container/libs/github_api.py index c2082b6b..125fd14e 100644 --- a/webhook_server_container/libs/github_api.py +++ b/webhook_server_container/libs/github_api.py @@ -2215,6 +2215,7 @@ def _required_check_in_progress(self, last_commit_check_runs: list[CheckRun]) -> def _required_check_failed(self, last_commit_check_runs: list[CheckRun], check_runs_in_progress: list[str]) -> str: failed_check_runs = [] for check_run in last_commit_check_runs: + self.logger.debug(f"{self.log_prefix} Check if {check_run.name} failed.") if ( check_run.name == CAN_BE_MERGED_STR or check_run.conclusion == SUCCESS_STR