Skip to content

Merge pull request #16 from plantinformatics/gh-action/auto-update-de… #1

Merge pull request #16 from plantinformatics/gh-action/auto-update-de…

Merge pull request #16 from plantinformatics/gh-action/auto-update-de… #1

name: Auto update develop branch
on:
push:
branches:
- main
jobs:
auto-merge:
runs-on: ubuntu-ladevelop
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Merge main -> develop
run: |
git config user.name github-actions
git config user.email [email protected]
git checkout develop
git merge --no-ff origin/main
git push origin develop