diff --git a/src/lint.py b/src/lint.py index 0f7afe5..e4dfa86 100644 --- a/src/lint.py +++ b/src/lint.py @@ -57,6 +57,10 @@ def is_default(validator, properties, instance, schema): print(f"::error file={config}::{error.message}") exit_code = 1 +if configuration.get("ingress", False) and configuration.get("webui"): + print(f"::error file={config}::'webui' should be removed, Ingress is enabled.") + exit_code = 1 + build = path / "build.json" if build.exists(): with open(build) as fp: