From 587f6e916d6bdd097b1b59b8c7a7b8128ed94dcb Mon Sep 17 00:00:00 2001 From: Josh Cannon Date: Tue, 14 Oct 2025 21:29:53 -0500 Subject: [PATCH] docs: Fix GitHub PR links (#3346) Fix the `gh-pr` special markup to use the right URL. It was using `/pulls/` which is a search, when it should be `/pull/` --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 47ab378cfb..671cf23fba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -123,7 +123,7 @@ extlinks = { "gh-issue": (f"https://github.com/bazel-contrib/rules_python/issues/%s", "#%s issue"), "gh-path": (f"https://github.com/bazel-contrib/rules_python/tree/main/%s", "%s"), - "gh-pr": (f"https://github.com/bazel-contrib/rules_python/pulls/%s", "#%s PR"), + "gh-pr": (f"https://github.com/bazel-contrib/rules_python/pull/%s", "#%s PR"), } # --- MyST configuration