jira_link_for_commit: add repo name
diff --git a/scripts/jira_link_for_commit.sh b/scripts/jira_link_for_commit.sh
index f524463..862b633 100755
--- a/scripts/jira_link_for_commit.sh
+++ b/scripts/jira_link_for_commit.sh
@@ -8,5 +8,6 @@
 hash=$(git rev-parse --short ${commit})
 base=$(git remote get-url origin)
 url=${base%.git}/commit/${hash}
+repo_name=$(echo $base | awk -F '/' '{ gsub(".git", "", $5); print $5}')
 
-echo "[commit ${hash}|${url}]"
+echo "[${repo_name} commit ${hash}|${url}]"