Skip to content

Commit

Permalink
simulate cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeela Lifshitz authored and Yeela Lifshitz committed Aug 15, 2024
1 parent fb9936b commit 5fd7dd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ runs:
with:
github-token: ${{ fromJSON(fromJSON(inputs.client_payload)).githubToken || github.token }}
repository: ${{ inputs.full_repository }}
run-id: ${{ fromJSON(fromJSON(inputs.client_payload)).artifactRunId }}
run-id: 10389925510 #${{ fromJSON(fromJSON(inputs.client_payload)).artifactRunId }}
name: output
path: code/output

Expand Down
2 changes: 1 addition & 1 deletion scripts/getConditionVars.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = core => {
const CLIENT_PAYLOAD_ARG = process.env.CLIENT_PAYLOAD_ARG;
try {
const payload = JSON.parse(CLIENT_PAYLOAD_ARG);
const isNonCommitEvent = payload.isNonCommitEvent || false;
const isNonCommitEvent = 'true'; //payload.isNonCommitEvent || false;
core.exportVariable('IS_NON_COMMIT_EVENT', isNonCommitEvent);
} catch (error) {
core.setFailed(error.message);
Expand Down

0 comments on commit 5fd7dd3

Please sign in to comment.