Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libkernelbot/launchers/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def run_submission(
await run.wait_for_completion(
lambda x: self.wait_callback(x, status), timeout_minutes=timeout
)
await status.update(f"Workflow [{run.run_id}]({run.html_url}) completed")
await status.update(f"Workflow [{run.run_id}](<{run.html_url}>) completed")
logger.info(f"Workflow [{run.run_id}]({run.html_url}) completed")
await status.push("Downloading artifacts...")
logger.info("Downloading artifacts...")
Expand Down Expand Up @@ -142,7 +142,7 @@ async def run_submission(

async def wait_callback(self, run: "GitHubRun", status: RunProgressReporter):
await status.update(
f"⏳ Workflow [{run.run_id}]({run.html_url}): {run.status} "
f"⏳ Workflow [{run.run_id}](<{run.html_url}>): {run.status} "
f"({run.elapsed_time.total_seconds():.1f}s)"
)

Expand Down
Loading