Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeela Lifshitz authored and Yeela Lifshitz committed Aug 21, 2024
1 parent 8255b8d commit 54073c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/get-condition-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ module.exports = core => {
ENABLE_CACHE_ARG === 'true' &&
isRunIdExists

core.warn(
`IS_NON_COMMIT_ARG type: ${typeof IS_NON_COMMIT_ARG}. ENABLE_CACHE_ARG type: ${typeof ENABLE_CACHE_ARG}.`
)

core.exportVariable('IS_NON_COMMIT_EVENT', IS_NON_COMMIT_ARG)
core.exportVariable('SKIP_GIT_CLONE', skipGitClone.toString())
} catch (error) {
core.warn(error.message)
core.warn(`Failed to get condition variables: ${error.message}`)

core.exportVariable('IS_NON_COMMIT_EVENT', 'false')
core.exportVariable('SKIP_GIT_CLONE', 'false')
Expand Down

0 comments on commit 54073c6

Please sign in to comment.