From 7c8b67bcb65fed728e5d9c7d7d2e90e379784089 Mon Sep 17 00:00:00 2001 From: Michael Sasser Date: Sun, 24 Nov 2024 10:56:16 +0100 Subject: [PATCH] fix: push to correct branch --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 67463c3..2f4eb75 100644 --- a/action.yml +++ b/action.yml @@ -50,4 +50,4 @@ runs: git remote add upstream ${{ inputs.upstream_repo_url }} git fetch --no-tags upstream 'refs/heads/${{ inputs.upstream_repo_branch }}' git reset --hard 'upstream/${{ inputs.upstream_repo_branch }}' - git push --set-upstream origin upstream --force + git push --set-upstream origin ${{ inputs.downstream_repo_branch }} --force