We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 405c374 commit 76e9280Copy full SHA for 76e9280
.github/workflows/module-monitor.yml
@@ -184,10 +184,15 @@ jobs:
184
except:
185
pass
186
187
- # Default: show short commit hash
188
- return {
189
- 'display': f"{commit_hash[:7]} (commit)" if commit_hash != "Unknown" else "Unknown"
190
- }
+ # Default: show short commit hash with clickable link
+ if commit_hash != "Unknown":
+ return {
+ 'display': f"[{commit_hash[:7]} (commit)](https://github.com/nrfconnect/sdk-nrfxlib/commit/{commit_hash})"
191
+ }
192
+ else:
193
194
+ 'display': "Unknown"
195
196
197
def generate_diff_link(old_url, new_url):
198
"""Generate diff link for the source repository"""
0 commit comments