Browse Source

fix pusher name via ssh push (#7167)

tags/v1.9.0-rc1
Lunny Xiao 4 years ago
parent
commit
74690f6451
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      cmd/serv.go

+ 1
- 1
cmd/serv.go View File

@@ -209,7 +209,7 @@ func runServ(c *cli.Context) error {
os.Setenv(models.EnvRepoIsWiki, strconv.FormatBool(results.IsWiki))
os.Setenv(models.EnvRepoName, results.RepoName)
os.Setenv(models.EnvRepoUsername, results.OwnerName)
os.Setenv(models.EnvPusherName, username)
os.Setenv(models.EnvPusherName, results.UserName)
os.Setenv(models.EnvPusherID, strconv.FormatInt(results.UserID, 10))
os.Setenv(models.ProtectedBranchRepoID, strconv.FormatInt(results.RepoID, 10))


Loading…
Cancel
Save