From 47f235130140d807c12b361b48dbab20a266bad8 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Thu, 21 Oct 2021 11:32:40 +0100 Subject: [PATCH] Add a note on permissions --- src/main.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 3183fd5..9f837c4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -130,7 +130,11 @@ function botSay(message: string): void { function setFailed(message: string | Error): void { core.setFailed(message) if (jobId) { - core.error(`For more information see: ${dependabotJobUrl(jobId)}`) + core.error(` + For more information see: ${dependabotJobUrl(jobId)} + + Note: write access required + `) } }