V3/transfer from required approvals edgecase #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'dist push' | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Update version | |
run: git config --global user.email "[email protected]" && git config --global user.name "bigcheeseh" && yarn version --patch | |
- name: stage changed files | |
run: git add . | |
- name: push updated version to current branch | |
run: git push -f origin HEAD:${{ github.head_ref }} |