#8 delete parse env in gitea.

This commit is contained in:
Gorbunov Kirill Andreevich 2024-03-31 16:12:56 +03:00
parent ca25e748e8
commit 6f79735d58
1 changed files with 1 additions and 1 deletions

View File

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