Merge branch 'main' of https://github.com/Langulus/Logger #2
Workflow file for this run
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: Automerge | |
on: push | |
env: | |
MY_REPO: https://Epixu:${{secrets.TRIGGER_WORKFLOWS}}@github.com/Langulus/Logger.git | |
MY_BRANCH: stable | |
MASTER_REPO: https://github.com/Langulus/Logger.git | |
MASTER_BRANCH: main | |
jobs: | |
merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Merge with stable branch | |
run: | | |
git clone ${{env.MY_REPO}} -b ${{env.MY_BRANCH}} tmp | |
cd tmp | |
git config user.name "Automerge Bot" | |
git config user.email "team@langulus.com" | |
git config pull.rebase true | |
git pull ${{env.MASTER_REPO}} ${{env.MASTER_BRANCH}} | |
git push |