Browse Source

Add missing environment variables (#2767)

pull/2768/head
Vince Grassia 4 years ago committed by GitHub
parent
commit
77cf0d3a98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/version-bump.yml

4
.github/workflows/version-bump.yml

@ -104,12 +104,16 @@ jobs: @@ -104,12 +104,16 @@ jobs:
########################
- name: Commit files
env:
CLIENT: ${{ steps.branch.outputs.client }}
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "Bumped ${CLIENT} version to ${{ github.event.inputs.version_number }}" -a
- name: Push changes
env:
CLIENT: ${{ steps.branch.outputs.client }}
run: git push -u origin ${CLIENT}_version_bump_${{ github.event.inputs.version_number }}
- name: Create Bump Version PR

Loading…
Cancel
Save