From 4fc2eda2efdd8667c682a9b5d1249c9bdb912e5d Mon Sep 17 00:00:00 2001 From: Dattatreya S Vellal <41127409+dsvellal@users.noreply.github.com> Date: Tue, 21 Mar 2023 04:10:03 -0400 Subject: [PATCH] docs: Update link in error message (#230) --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 4fb796a82..2ce1d5d8f 100644 --- a/src/index.js +++ b/src/index.js @@ -118,7 +118,7 @@ module.exports = async function run() { }); } catch (error) { throw new Error( - `Pull request has only one commit and it's not semantic; this may lead to a non-semantic commit in the base branch (see https://github.community/t/how-to-change-the-default-squash-merge-commit-message/1155). Amend the commit message to match the pull request title, or add another commit.` + `Pull request has only one commit and it's not semantic; this may lead to a non-semantic commit in the base branch (see https://github.com/community/community/discussions/16271). Amend the commit message to match the pull request title, or add another commit.` ); }