1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-02 22:05:46 +02:00
Carlos Alexandro Becker 8b1c4ead60
feat: allow to PR homebrew taps (#3903)
closes #3485

also fixed a bug in file creation for github: it was always searching
for the file in the default branch

also, we don't need to create the file first, update does both create
and update.

TODO: implement the for krew, scoop, etc...

---------

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
2023-04-06 22:58:06 -03:00

38 lines
771 B
Go

package client
import (
"github.com/goreleaser/goreleaser/pkg/config"
)
// RepoFromRef converts a config.RepoRef into a Repo.
func RepoFromRef(ref config.RepoRef) Repo {
return Repo{
Owner: ref.Owner,
Name: ref.Name,
Branch: ref.Branch,
}
}
// TemplateRef templates a config.RepoFromRef
func TemplateRef(apply func(s string) (string, error), ref config.RepoRef) (config.RepoRef, error) {
name, err := apply(ref.Name)
if err != nil {
return ref, err
}
owner, err := apply(ref.Owner)
if err != nil {
return ref, err
}
branch, err := apply(ref.Branch)
if err != nil {
return ref, err
}
return config.RepoRef{
Owner: owner,
Name: name,
Token: ref.Token,
Branch: branch,
PullRequest: ref.PullRequest,
}, nil
}