Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main: don't send slack message if the actor starts with # #691

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions actions/main/action.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,12 @@ module.exports = async ({ github, context, inputs, actionPath, core, debug = fal
const actor = githubToSlack[lowerActor] ? githubToSlack[lowerActor] : `@${context.actor}`
core.setSecret(actor)

// if actor starts with hashtag, return eagerly
if (actor.startsWith('#')) {
debugLog('Actor starts with hashtag, exiting eagerly!')
return
}

if (fs.existsSync('reviewdog.fail.log')) {
// print reviewdog.fail.log to the console
const log = fs.readFileSync('reviewdog.fail.log', 'UTF-8').replaceAll(/^/g, CONSOLE_BLUE)
Expand Down