This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 3af2538ef2d Add clickable links to PR numbers in auto-triage timing 
table (#63493)
3af2538ef2d is described below

commit 3af2538ef2d1ea0ac0a265703464d70b8d995f45
Author: Yeonguk Choo <[email protected]>
AuthorDate: Mon Mar 16 05:27:59 2026 +0900

    Add clickable links to PR numbers in auto-triage timing table (#63493)
---
 dev/breeze/src/airflow_breeze/commands/pr_commands.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/pr_commands.py 
b/dev/breeze/src/airflow_breeze/commands/pr_commands.py
index 54fbe091aa5..4fe109be348 100644
--- a/dev/breeze/src/airflow_breeze/commands/pr_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/pr_commands.py
@@ -4538,6 +4538,7 @@ def auto_triage(
 
     if deterministic_timings:
         pr_titles = {pr.number: pr.title for pr in candidate_prs}
+        pr_urls = {pr.number: pr.url for pr in candidate_prs}
         # Amortize batch fetch time evenly across candidate PRs
         num_candidates = len(candidate_prs) or 1
         fetch_per_pr = enrich_total / num_candidates
@@ -4590,7 +4591,7 @@ def auto_triage(
             action_display = action_styles.get(action_raw, f"[dim]{action_raw 
or '—'}[/]")
 
             pr_timing_table.add_row(
-                f"#{pr_num}",
+                f"[link={pr_urls.get(pr_num, '')}]#{pr_num}[/link]",
                 title,
                 result,
                 action_display,

Reply via email to