From 32274e36ad617c193e9170dbf10a1e574d5d0aa5 Mon Sep 17 00:00:00 2001 From: otomad Date: Sun, 10 Sep 2023 15:48:57 +0800 Subject: [PATCH] Create sync-locale.yml --- .github/workflows/sync-locale.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/sync-locale.yml 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'