From b906d9f6b9b116bf57d0d582632d33135c77ddf2 Mon Sep 17 00:00:00 2001 From: Mirza Karacic Date: Thu, 12 Dec 2024 10:53:00 -0800 Subject: [PATCH] test --- .github/actions/fast-forward-merge/action.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/actions/fast-forward-merge/action.yaml b/.github/actions/fast-forward-merge/action.yaml index 4a4f7e4f5..3b2c67a96 100644 --- a/.github/actions/fast-forward-merge/action.yaml +++ b/.github/actions/fast-forward-merge/action.yaml @@ -23,15 +23,18 @@ runs: ref: ${{ inputs.base-branch }} token: ${{ inputs.git-bot-token }} - - name: Debug stuff - shell: bash - run: | - git remote -vvv - - name: Fast forward shell: bash run: git merge --ff-only ${{ inputs.ref-to-merge }} + - name: Add tagging message + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "Promote to prod [skip ci]" + commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> + tagging_message: Promote to PROD + branch: ${{ inputs.base-branch }} + - name: Upload changes to remote head branch shell: bash run: git push