diff --git a/demisto_sdk/scripts/validate_conf_json.py b/demisto_sdk/scripts/validate_conf_json.py index 23ad6679d4..37d1d1202a 100644 --- a/demisto_sdk/scripts/validate_conf_json.py +++ b/demisto_sdk/scripts/validate_conf_json.py @@ -52,7 +52,7 @@ def _validate_content_exists(self) -> bool: ): message = f"{len(linked_ids_missing_in_graph)} {content_type.value}s are not found in the graph: {','.join(sorted(linked_ids_missing_in_graph))}" logger.error(message) - if string_to_bool(os.getenv("GITHUB_ACTIONS")): + if string_to_bool(os.getenv("GITHUB_ACTIONS", False)): print( # noqa: T201 f"::error file={self._conf_path},line=1,endLine=1,title=Conf.JSON Error::{message}" )