From a14200d8bff94d4b79113b15dd464c21c0e5ecfc Mon Sep 17 00:00:00 2001 From: Jonas Schmitt Date: Tue, 24 Sep 2024 07:43:57 +0200 Subject: [PATCH 1/2] fix: add missing "fallback-sha" to list of arguments --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2d10fc5..db161b9 100644 --- a/action.yml +++ b/action.yml @@ -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 From a097ff89c67faec067dffd865d3ac47902dde6b0 Mon Sep 17 00:00:00 2001 From: Jonas Schmitt Date: Tue, 24 Sep 2024 07:56:18 +0200 Subject: [PATCH 2/2] bump: version to 4.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e0f422..ec1cc96 100644 --- a/package.json +++ b/package.json @@ -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": {