Skip to content

Commit be2a366

Browse files
authored
Add missing "fallback-sha" to list of arguments (#169)
* fix: add missing "fallback-sha" to list of arguments * bump: version to 4.1.1
1 parent 16efd74 commit be2a366

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ runs:
4848
last_successful_event: ${{ inputs.last-successful-event }}
4949
working_directory: ${{ inputs.working-directory }}
5050
working_id: ${{ inputs.workflow-id }}
51-
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"
51+
fallback_sha: ${{ inputs.fallback-sha }}
52+
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"
5253

5354
- name: Log base and head SHAs used for nx affected
5455
shell: bash

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"license": "MIT",
55
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action",
66
"scripts": {

0 commit comments

Comments
 (0)