You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dependency maintenance (#318)
* Basic dependency maintenance
* Use `go tool` for tooling dependencies
* More modern prometheus have less stringent label requirements.
Change to a label name invalid for new prometheuses.
Fix `ACCESS_TOKEN_` variables still managed for unmanaged repos (#304)
Follow up of #303.
I missed that there's two controllers where the `ACCESS_TOKEN_` variable are updated. I took the liberty to merge the controllers since they already do almost the same thing.
Fix initialization of GitLab repos
GitLab returns `404` on a `repository/tree` call if the repo has zero commits.
We checked against the error message but the client library started to return a static `404` error which makes our check fail.
This commit changes the checking logic to check for the clients static `ErrNotFound` error. This might catch other errors too (repo does not exists at all), but those errors will be caught in the next step.