Skip to content

Commit

Permalink
Merge pull request #53 from RalfJung/try
Browse files Browse the repository at this point in the history
try builds: include a copyable version of the full commit SHA in comment
  • Loading branch information
Mark-Simulacrum authored Aug 6, 2019
2 parents efde376 + d029743 commit 91da2d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homu/comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def render(self):
urls = ", ".join(
"[%s](%s)" % kv for kv in sorted(self.builders.items())
)
return ":sunny: Try build successful - %s\nBuild commit: %s" % (
urls, self.merge_sha,
return ":sunny: Try build successful - %s\nBuild commit: %s (`%s`)" % (
urls, self.merge_sha, self.merge_sha,
)


Expand Down

0 comments on commit 91da2d8

Please sign in to comment.