diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 09ab225ee..f6620cbc1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -93,6 +93,7 @@ jobs: env: DEPLOY_SSH: ${{ secrets.DEPLOY_SSH }} GIT_SSH_COMMAND: "ssh -o StrictHostKeyChecking=no" + GH_BRANCH: ${{ steps.extract_branch.outputs.branch }} run: | eval "$(ssh-agent -s)" ssh-add - <<< "${DEPLOY_SSH}" @@ -101,6 +102,6 @@ jobs: git config --global user.email "actions@github.com" git add . - git commit -m "[CI] Update staging for ${DVER}" || true + git commit -m "[CI] Update staging for ${DVER} on ${GH_BRANCH}" || true git push origin main || true