What problem would this solve?
Some projects which are organized in a monorepo structure where multiple software artifacts are released from within the same project, as an example, https://github.com/kubernetes-sigs/kustomize/releases where we can see multiple artifacts tagged kustomize/..., kyaml/... and so on.
Currently the /repos/{owner}/{repo}/releases API only supports fetching all the releases without a specific prefix, which means if there are no recent releases of, say, the kustomize artifacts, I might have to scan a few pages, which wastes server resources.
What do you propose?
I want to be able to pass a query string like ?tag_prefix=kustomize/ that will filter only the artifacts with that tag, avoiding a large number of requests.
I can send in a pull request if interested.
What problem would this solve?
Some projects which are organized in a monorepo structure where multiple software artifacts are released from within the same project, as an example, https://github.com/kubernetes-sigs/kustomize/releases where we can see multiple artifacts tagged
kustomize/...,kyaml/...and so on.Currently the /repos/{owner}/{repo}/releases API only supports fetching all the releases without a specific prefix, which means if there are no recent releases of, say, the
kustomizeartifacts, I might have to scan a few pages, which wastes server resources.What do you propose?
I want to be able to pass a query string like
?tag_prefix=kustomize/that will filter only the artifacts with that tag, avoiding a large number of requests.I can send in a pull request if interested.