Skip to content

Commit

Permalink
bundle and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Aug 14, 2023
1 parent d9b0f43 commit a4dbbee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion 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: 3 additions & 1 deletion src/functions/post-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ export async function postDeploy(
if (lockData?.sticky === true) {
core.info('sticky lock detected, will not remove lock')
} else if (lockData === null || lockData === undefined) {
core.warning('a request to obtain the lock data returned null or undefined - the lock may have been removed by another process while this Action was running')
core.warning(
'a request to obtain the lock data returned null or undefined - the lock may have been removed by another process while this Action was running'
)
} else {
core.info('non-sticky lock detected, will remove lock')
core.debug(`lockData.sticky: ${lockData.sticky}`)
Expand Down

0 comments on commit a4dbbee

Please sign in to comment.