Skip to content

Commit dadf23a

Browse files
committed
wip
1 parent bebaaec commit dadf23a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,10 @@ def post_update_success_comment(
285285
parts = [f"✅ Release `{version}` updated successfully."]
286286

287287
if release_url:
288-
parts.append(f"\n**Release**: {release_url}")
288+
parts.append(f"\n[View Release]({release_url})")
289289

290290
if workflow_run_url:
291-
parts.append(f"\n<sub>[Workflow run]({workflow_run_url})</sub>")
291+
parts.append(f" • [View workflow run]({workflow_run_url})")
292292

293293
body = "".join(parts)
294294
issue.create_comment(body)
@@ -1215,7 +1215,7 @@ def main() -> None:
12151215
raise Exception(f"Unknown command: {command}")
12161216

12171217
print(output)
1218-
if issue_number and inputs.event_name == "issue_comment":
1218+
if issue_number and inputs.event_name == "issue_comment" and output.strip():
12191219
post_comment(
12201220
inputs.token,
12211221
inputs.repo_name,

0 commit comments

Comments
 (0)