Skip to content

Commit

Permalink
Drop confused warning about secret
Browse files Browse the repository at this point in the history
In GitHub, there are secrets and env entities, and sharing that this action requires a secret is misleading.
  • Loading branch information
pftg committed Mar 14, 2023
1 parent b2c68ec commit 73e6d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function run(): Promise<void> {
await send(url, jobName, jobStatus, jobSteps, channel, message, config)
core.info(`Sent ${jobName} status of ${jobStatus} to Slack!`)
} else {
core.warning('No "SLACK_WEBHOOK_URL"s secret or "webhook-url" input configured. Skip.')
core.warning('No "SLACK_WEBHOOK_URL"s env or "webhook-url" input configured. Skip.')
}
} catch (error) {
if (error instanceof Error) core.setFailed(error.message)
Expand Down

0 comments on commit 73e6d45

Please sign in to comment.