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

Commit

Permalink
Merge pull request #3 from mremi/fix-flowdock-broken-link
Browse files Browse the repository at this point in the history
fix(flowdock): fix broken link to GitLab
  • Loading branch information
rande authored Dec 28, 2016
2 parents c6525b5 + c1adb6e commit 1ac37a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integrations/flowdock/ci_flowdock_ci_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (c *CiFlowdockStatusCommand) Run(args []string) int {
<ul>
<li><b>Author:</b> {{ .Build.Commit.Author_Name }}</li>
<li><b>Title:</b> {{ .Build.Commit.Title }}</li>
<li><b>Builds commit:</b> <a href="{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Short_Id }}/builds">{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Id }}/builds</a></li>
<li><b>Builds commit:</b> <a href="{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Short_Id }}/pipelines">{{ .Project.WebUrl }}/commit/{{ .Build.Commit.Id }}/pipelines</a></li>
</ul>
<table class="build-status" style="width: 100%">
Expand Down Expand Up @@ -208,7 +208,7 @@ func (c *CiFlowdockStatusCommand) Run(args []string) int {
},
Title: fmt.Sprintf("Jobs for %s - %s", project.Name, c.BuildRefName),
Body: body.String(),
ExternalUrl: fmt.Sprintf("%s/commit/%s/builds", project.WebUrl, c.BuildRef),
ExternalUrl: fmt.Sprintf("%s/commit/%s/pipelines", project.WebUrl, c.BuildRef),
},
Author: &FlowdockAuthor{
Name: "GitlabCi",
Expand Down

0 comments on commit 1ac37a1

Please sign in to comment.