merge_qa #56
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: Merge QA | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: | |
- merge_qa | |
jobs: | |
merge_qa: | |
name: Merge QA | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Merge next_release branch into cicd branch | |
run: | | |
git config --global user.name "${GITHUB_ACTOR}" | |
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
git checkout cicd | |
git pull | |
git merge next_release | |
git push |