Is there a way to get all branches on a given project?
I am referring to this API: https://docs.gitlab.com/ee/api/branches.html#list-repository-branches I looked in all the data sources but I didn't find anything
I'd like to have something like this:
# By project ID
data "gitlab_branches" "foo" {
project = "12345"
}
# By project full path
data "gitlab_branches" "foo" {
project = "foo/bar"
}