Skip to content

Merge pull request #95 from KIRAKIRA-DOUGA/feature-2023102102-Nuxt3.8… #79

Merge pull request #95 from KIRAKIRA-DOUGA/feature-2023102102-Nuxt3.8…

Merge pull request #95 from KIRAKIRA-DOUGA/feature-2023102102-Nuxt3.8… #79

Workflow file for this run

name: Sync Develop to Locale Branch
on:
push:
branches:
- develop
jobs:
sync-branches:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Merge develop -> locale
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
git config pull.rebase false
git checkout locale
git pull origin develop
git push origin locale