From 033910f490edb0c585b76cf05647c5ecf2da2b6f Mon Sep 17 00:00:00 2001 From: GuillaumeFalourd Date: Thu, 21 Oct 2021 15:00:29 -0300 Subject: [PATCH] update action.yml Signed-off-by: GuillaumeFalourd --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 72f8276..7cdc718 100644 --- a/action.yml +++ b/action.yml @@ -83,11 +83,11 @@ runs: git add ${{ inputs.files }} -v git commit -m "${{ inputs.commit_message }}" $EMPTY - git branch push-and-commit-action + git branch push-and-commit-action-${{ github.run_id }} git fetch "${{ inputs.remote_repository }}" "$CURRENT_BRANCH" git checkout "$CURRENT_BRANCH" - git merge push-and-commit-action - git branch -d push-and-commit-action + git merge push-and-commit-action-${{ github.run_id }} + git branch -d push-and-commit-action-${{ github.run_id }} git push "${{ inputs.remote_repository }}" "$CURRENT_BRANCH:$TARGET_BRANCH" --follow-tags $FORCE $TAGS shell: bash