From fef54660a876902d83eedd7396c637eb068b0931 Mon Sep 17 00:00:00 2001 From: Jan N Rose Date: Thu, 11 Jun 2026 23:21:09 +0200 Subject: [PATCH] Update OWNERS link in maintainer-approval.js Make the link absolute (needs to include repo path & branch) rather than relative. Relative links do not render correctly in GitHub PR comments --- .github/workflows/maintainer-approval.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maintainer-approval.js b/.github/workflows/maintainer-approval.js index 38371f8cdcb..ca1d914a1b5 100644 --- a/.github/workflows/maintainer-approval.js +++ b/.github/workflows/maintainer-approval.js @@ -97,7 +97,7 @@ async function checkPerPathApproval(files, rulesWithTeams, approverLogins, githu // --- Git history & scoring helpers --- const MENTION_REVIEWERS = false; -const OWNERS_LINK = "[OWNERS](.github/OWNERS)"; +const OWNERS_LINK = "[OWNERS](/databricks/cli/blob/main/.github/OWNERS)"; const MARKER = ""; const STATUS_CONTEXT = "maintainer-approval";