Navigation Menu

Skip to content

Commit

Permalink
make urls clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmestad committed Jan 8, 2012
1 parent cc986a2 commit f98caad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/janky/notifier/chat.rb
Expand Up @@ -5,13 +5,14 @@ def self.completed(build)
status = build.green? ? "was successful" : "failed"
color = build.green? ? "green" : "red"

message = "Build #%s (%s) of %s/%s %s (%ss) %s" % [
message = "Build #%s (%s) of %s/%s %s (%ss) <a href='%s'>%s</a>" % [
build.number,
build.sha1,
build.repo_name,
build.branch_name,
status,
build.duration,
build.compare,
build.compare
]

Expand Down

0 comments on commit f98caad

Please sign in to comment.