From ddbc4798b7f3a54a95a45206c81533884023809d Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 25 Nov 2021 14:26:11 -0500 Subject: [PATCH] Make error message clearer that it came from auth --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 7832c51..1ca164e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -147,7 +147,7 @@ async function run(): Promise { } } } catch (err) { - setFailed(`Action failed with error: ${err}`); + setFailed(`google-github-actions/auth failed with: ${err}`); } }