Integrations v2.1: Virtual integrations (#80613)

This commit is contained in:
Franck Nijhof 2022-10-21 05:09:06 +02:00 committed by GitHub
parent 6c23de94e1
commit bb287dd0ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
66 changed files with 2968 additions and 2720 deletions

View file

@ -47,7 +47,10 @@ def generate_and_validate(integrations: dict[str, Integration], config: Config):
for domain in sorted(integrations):
integration = integrations[domain]
if not integration.manifest:
if (
not integration.manifest
or integration.manifest.get("integration_type") == "virtual"
):
continue
codeowners = integration.manifest["codeowners"]