From 7fac4ea95154196a050c96b270412b8a42a1df75 Mon Sep 17 00:00:00 2001 From: Magus Date: Mon, 17 Jan 2022 15:37:30 +0700 Subject: [PATCH] try develop branch --- .github/workflows/sync-upstream.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index 001a00f37..199006525 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -47,3 +47,24 @@ jobs: target_sync_branch: better-docs target_repo_token: ${{ secrets.GITHUB_TOKEN }} shallow_since: '10 years' + + sync_develop: + runs-on: ubuntu-latest + name: Sync develop with upstream/develop + steps: + - name: Checkout develop + uses: actions/checkout@v2 + with: + ref: better-docs + token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 + + - name: Pull (Fast-Forward) upstream changes (develop) + id: sync-develop + uses: aormsby/Fork-Sync-With-Upstream-action@v3.2 + with: + upstream_sync_repo: phobos2077/sfall + upstream_sync_branch: develop + target_sync_branch: develop + target_repo_token: ${{ secrets.GITHUB_TOKEN }} + shallow_since: '10 years'