From 55a4b48f18c6222c7cc99824fc9f092e59e25151 Mon Sep 17 00:00:00 2001 From: Lucas PASCAL Date: Wed, 16 Nov 2022 12:14:57 +0100 Subject: [PATCH] [fix] 'github-push-action' does not seem to cope with src:dst git push syntax --- .github/actions/commit-changes/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/commit-changes/action.yml b/.github/actions/commit-changes/action.yml index 0099ad6..f572b32 100644 --- a/.github/actions/commit-changes/action.yml +++ b/.github/actions/commit-changes/action.yml @@ -114,6 +114,6 @@ runs: uses: ad-m/github-push-action@master with: github_token: ${{ inputs.secret }} - branch: ${{ steps.commit.outputs.src_branch }}:${{ steps.commit.outputs.dst_branch }} + branch: ${{ steps.commit.outputs.dst_branch }} directory: ${{ inputs.directory }} repository: ${{ inputs.repository }}