Tag-webhooks are useless without shasums

This commit is contained in:
Kim "BKC" Carlbäcker 2016-11-29 07:58:01 +01:00
parent abf6c3a8e3
commit f364522468
1 changed files with 2 additions and 0 deletions

View File

@ -565,8 +565,10 @@ func CommitRepoAction(opts CommitRepoActionOptions) error {
} }
case ActionPushTag: // Create case ActionPushTag: // Create
shaSum := git.OpenRepository(repo.RepoPath()).GetTagCommitID(refName)
return PrepareWebhooks(repo, HookEventCreate, &api.CreatePayload{ return PrepareWebhooks(repo, HookEventCreate, &api.CreatePayload{
Ref: refName, Ref: refName,
Sha: shaSum,
RefType: "tag", RefType: "tag",
Repo: apiRepo, Repo: apiRepo,
Sender: apiPusher, Sender: apiPusher,