Skip to content

Commit

Permalink
add some success logs
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Dec 6, 2024
1 parent 0589e75 commit 436dbd7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions dist/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/index.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/functions/post-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ export async function postDeploy(context, octokit, data) {
await label(context, octokit, labelsToAdd, labelsToRemove)
}

core.info(
`✅ ${COLORS.success}post deploy completed! (noop)${COLORS.reset}`
)
return 'success - noop'
}

Expand Down Expand Up @@ -215,6 +218,7 @@ export async function postDeploy(context, octokit, data) {
}

// if the post deploy comment logic completes successfully, return
core.info(`✅ ${COLORS.success}post deploy completed!${COLORS.reset}`)
return 'success'
}

Expand Down

0 comments on commit 436dbd7

Please sign in to comment.