diff --git a/entry/config_and_run.sh b/entry/config_and_run.sh index f43f45f..0e00a11 100755 --- a/entry/config_and_run.sh +++ b/entry/config_and_run.sh @@ -48,7 +48,7 @@ if [ -z "${GITHUB_ACTIONS}" ] || [ "${GITHUB_ACTIONS}" = false ]; then # shellcheck disable=SC2034 INPUT_UPSTREAM_PULL_ARGS="" # shellcheck disable=SC2034 - INPUT_TARGET_PUSH_ARGS="" + INPUT_TARGET_BRANCH_PUSH_ARGS="" # git config vars - required if they aren't already set # shellcheck disable=SC2034 diff --git a/fork-sync.code-workspace b/fork-sync.code-workspace index 3517103..10a7391 100644 --- a/fork-sync.code-workspace +++ b/fork-sync.code-workspace @@ -19,7 +19,10 @@ "titleBar.activeBackground": "#215732", "titleBar.activeForeground": "#e7e7e7", "titleBar.inactiveBackground": "#21573299", - "titleBar.inactiveForeground": "#e7e7e799" + "titleBar.inactiveForeground": "#e7e7e799", + "sash.hoverBorder": "#2f7c47", + "statusBarItem.remoteBackground": "#215732", + "statusBarItem.remoteForeground": "#e7e7e7" }, "peacock.color": "#215732" } diff --git a/run/push_updates.sh b/run/push_updates.sh index 3cef2c8..872d356 100644 --- a/run/push_updates.sh +++ b/run/push_updates.sh @@ -11,7 +11,7 @@ push_new_commits() { fi # shellcheck disable=SC2086 - git push ${INPUT_TARGET_PUSH_ARGS} origin "${INPUT_TARGET_SYNC_BRANCH}" + git push ${INPUT_TARGET_BRANCH_PUSH_ARGS} origin "${INPUT_TARGET_SYNC_BRANCH}" COMMAND_STATUS=$? if [ "${COMMAND_STATUS}" != 0 ]; then