#8 add config.

This commit is contained in:
Gorbunov Kirill Andreevich
2024-03-17 15:46:10 +03:00
parent 974c685136
commit 383779b530
3 changed files with 7 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ type Gitea struct {
func NewGitea(cfg configcli.Config) *Gitea {
return &Gitea{
URL: cfg.Source.APIURL,
Token: cfg.Source.Token,
Token: os.Getenv("GITEA_TOKEN"),
PRTitle: cfg.PullRequestTitle,
PRBody: cfg.PullRequestBody,
Repository: cfg.Source.Repository,