diff --git a/scripts/get_integration_sources.py b/scripts/get_integration_sources.py index 4e069aea086864e3b58f8d26769c2ab08d4df409..e78916c724d5375c8acecd5872197290f87deb77 100755 --- a/scripts/get_integration_sources.py +++ b/scripts/get_integration_sources.py @@ -27,7 +27,7 @@ def get_integration_sources(manifest_project: str, manifest_branch: str, group: for project in group.projects.list(): try: project = gitlab.projects.get(project.id) - if not project.archived: + if not project.archived and project.jobs_enabled: integrations = project.variables.get("INTEGRATION").value for integration in integrations.splitlines(): if re.search(regex, integration):