diff --git a/.github/workflows/sync-locale.yml b/.github/workflows/sync-locale.yml new file mode 100644 index 00000000..10e4d5d8 --- /dev/null +++ b/.github/workflows/sync-locale.yml @@ -0,0 +1,25 @@ +name: Sync Develop to Locale + +on: + push: + branches: + - develop + +jobs: + sync-branches: + runs-on: ubuntu-latest + name: Syncing branches + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Node + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: Opening pull request + id: pull + uses: tretuna/sync-branches@1.2.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'develop' + TO_BRANCH: 'locale'