1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

Fix release URL in webhooks (#27182)

This commit is contained in:
John Olheiser
2023-09-21 17:55:09 -05:00
committed by GitHub
parent 1f026bcb7e
commit 7520cd678c
9 changed files with 9 additions and 9 deletions

View File

@@ -223,7 +223,7 @@ func (s *SlackPayload) PullRequest(p *api.PullRequestPayload) (api.Payloader, er
attachments = append(attachments, SlackAttachment{
Color: fmt.Sprintf("%x", color),
Title: issueTitle,
TitleLink: p.PullRequest.URL,
TitleLink: p.PullRequest.HTMLURL,
Text: attachmentText,
})
}