diff --git a/app/terraform/list/github.py b/app/terraform/list/github.py index 8b653a6..c46a500 100644 --- a/app/terraform/list/github.py +++ b/app/terraform/list/github.py @@ -7,6 +7,10 @@ class ListGithubAutomation(ListAutomation): provider = "github" always_refresh = True + # Where there is more than 1 file in the same repository, there's a race condition + # TODO: file an issue in the github about this, GitLab had a similar issue but fixed it + parallelism = 1 + template_parameters = [ "github_api_key" ]