Skip to content

Commit

Permalink
Tweak error help text
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry Gordon committed Oct 21, 2021
1 parent c14124f commit be2619b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
6 changes: 1 addition & 5 deletions dist/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +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)}
Note: write access required
`)
core.error(
`For more information see: ${dependabotJobUrl(
jobId
)} (write access required)`
)
}
}

Expand Down

0 comments on commit be2619b

Please sign in to comment.