File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ jobs:
138138 pr_number = pr_match.group(1)
139139 print(f"DEBUG: Commit {commit_hash} matches PR #{pr_number}", file=sys.stderr)
140140 return {
141- 'display': f"[{commit_hash[:7]}](https://github.com/nrfconnect/sdk-nrfxlib/pull/{pr_number})",
141+ 'display': f"[{commit_hash[:7]} (PR #{pr_number}) ](https://github.com/nrfconnect/sdk-nrfxlib/pull/{pr_number})",
142142 'is_pr': True,
143143 'pr_number': pr_number,
144144 'pr_url': f"https://github.com/nrfconnect/sdk-nrfxlib/pull/{pr_number}"
@@ -186,7 +186,7 @@ jobs:
186186
187187 # Default: show short commit hash
188188 return {
189- 'display': commit_hash[:7] if commit_hash != "Unknown" else "Unknown"
189+ 'display': f"{ commit_hash[:7]} (commit)" if commit_hash != "Unknown" else "Unknown"
190190 }
191191
192192 def generate_diff_link(old_url, new_url):
You can’t perform that action at this time.
0 commit comments