list/gitlab: no parallelism to avoid conflicts with multiple files in the same repo

This commit is contained in:
Iain Learmonth 2022-05-23 10:59:26 +01:00
parent 592aa16734
commit e18aece9b5

View file

@ -7,6 +7,10 @@ class ListGithubAutomation(ListAutomation):
provider = "github" provider = "github"
always_refresh = True 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 = [ template_parameters = [
"github_api_key" "github_api_key"
] ]