From 19327a5c0689872f635578e162627fe871eb2312 Mon Sep 17 00:00:00 2001 From: Frank Geyer <102804538+SteffenFrankGeyer@users.noreply.github.com> Date: Thu, 2 May 2024 15:29:42 +0200 Subject: [PATCH] Update index.js Adjust exception message --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b25541a..fce11d3 100644 --- a/index.js +++ b/index.js @@ -54,7 +54,7 @@ try { return; } - throw Error ('Branch is not allowed to get built') + throw Error ('Branch "' + branchName + '" is not allowed to get built') } catch (error) { core.setFailed(error.message); }