diff --git a/.github/workflows/bump-versions.yml b/.github/workflows/bump-versions.yml index 55d4ac8ba0..eb8d881278 100644 --- a/.github/workflows/bump-versions.yml +++ b/.github/workflows/bump-versions.yml @@ -40,6 +40,7 @@ jobs: run: go run ./cmd/bump-versions - name: Get branch + id: get-branch run: | if [ "${{ inputs.environment }}" = "Production" ]; then export BRANCH="${{ github.ref }}" @@ -54,4 +55,8 @@ jobs: file_pattern: 'modules/**/* providers/**/*' commit_user_name: Auto Version Bumper branch: ${{ env.BRANCH }} - create_branch: true \ No newline at end of file + create_branch: true + + - name: Print Branch name + run: | + echo "Providers and modules changes were pushed to branch: ${{ env.BRANCH }}" \ No newline at end of file