Skip to content

Commit

Permalink
Add missing "fallback-sha" to list of arguments (#169)
Browse files Browse the repository at this point in the history
* fix: add missing "fallback-sha" to list of arguments

* bump: version to 4.1.1
  • Loading branch information
kumboleijo authored Sep 27, 2024
1 parent 16efd74 commit be2a366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ runs:
last_successful_event: ${{ inputs.last-successful-event }}
working_directory: ${{ inputs.working-directory }}
working_id: ${{ inputs.workflow-id }}
run: node "$GITHUB_ACTION_PATH/dist/index.js" "$gh_token" "$main_branch_name" "$error_on_no_successful_workflow" "$last_successful_event" "$working_directory" "$working_id"
fallback_sha: ${{ inputs.fallback-sha }}
run: node "$GITHUB_ACTION_PATH/dist/index.js" "$gh_token" "$main_branch_name" "$error_on_no_successful_workflow" "$last_successful_event" "$working_directory" "$working_id" "$fallback_sha"

- name: Log base and head SHAs used for nx affected
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "4.1.0",
"version": "4.1.1",
"license": "MIT",
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action",
"scripts": {
Expand Down

0 comments on commit be2a366

Please sign in to comment.