Skip to content
This repository was archived by the owner on Feb 7, 2020. It is now read-only.

Commit 1ac37a1

Browse files
authored
Merge pull request #3 from mremi/fix-flowdock-broken-link
fix(flowdock): fix broken link to GitLab
2 parents c6525b5 + c1adb6e commit 1ac37a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integrations/flowdock/ci_flowdock_ci_status.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (c *CiFlowdockStatusCommand) Run(args []string) int {
146146
<ul>
147147
<li><b>Author:</b> {{ .Build.Commit.Author_Name }}</li>
148148
<li><b>Title:</b> {{ .Build.Commit.Title }}</li>
149-
<li><b>Builds commit:</b> <a href="{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Short_Id }}/builds">{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Id }}/builds</a></li>
149+
<li><b>Builds commit:</b> <a href="{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Short_Id }}/pipelines">{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Id }}/pipelines</a></li>
150150
</ul>
151151
152152
<table class="build-status" style="width: 100%">
@@ -208,7 +208,7 @@ func (c *CiFlowdockStatusCommand) Run(args []string) int {
208208
},
209209
Title: fmt.Sprintf("Jobs for %s - %s", project.Name, c.BuildRefName),
210210
Body: body.String(),
211-
ExternalUrl: fmt.Sprintf("%s/commit/%s/builds", project.WebUrl, c.BuildRef),
211+
ExternalUrl: fmt.Sprintf("%s/commit/%s/pipelines", project.WebUrl, c.BuildRef),
212212
},
213213
Author: &FlowdockAuthor{
214214
Name: "GitlabCi",

0 commit comments

Comments
 (0)