From 35a4ed9a06c5feb364b226ce87cec8b5e7b41c09 Mon Sep 17 00:00:00 2001 From: Alexander Green Date: Mon, 8 Jun 2026 16:59:17 +0200 Subject: [PATCH] fix: preserve issueBase when set in config --- src/core/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/github.js b/src/core/github.js index e2fe2c0f45..2b69ddb343 100644 --- a/src/core/github.js +++ b/src/core/github.js @@ -99,7 +99,7 @@ export async function run(conf) { return; } const branch = ghConf.branch || "gh-pages"; - const issueBase = new URL("./issues/", ghURL).href; + const issueBase = conf.issueBase || new URL("./issues/", ghURL).href; const newIssuesURL = new URL("./new/choose", issueBase).href; // Allow custom pullsURL and commitHistoryURL for monorepo scenarios