From bbd83fd76089e6799d2d84e0585b64eede96ffd7 Mon Sep 17 00:00:00 2001 From: Hakadao Date: Sun, 7 Jan 2024 16:53:43 +0800 Subject: [PATCH] chore: add sync dev firefox action --- .github/workflows/sync-dev-firefox.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/sync-dev-firefox.yml diff --git a/.github/workflows/sync-dev-firefox.yml b/.github/workflows/sync-dev-firefox.yml new file mode 100644 index 00000000..451557a4 --- /dev/null +++ b/.github/workflows/sync-dev-firefox.yml @@ -0,0 +1,24 @@ +name: Sync Back to Dev Firefox +on: + push: + branches: + - dev + +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.4.0 + with: + GITHUB_TOKEN: ${{secrets.SYNC_TOKEN}} + FROM_BRANCH: dev + TO_BRANCH: dev-firefox