From 1e73d6e53b1b6d33154ed1709775593ee9f3167c Mon Sep 17 00:00:00 2001 From: godofredoc Date: Thu, 6 Jan 2022 14:02:57 -0800 Subject: [PATCH] Swap the mirroring order. (#4650) This is to make main the default branch. --- .github/workflows/mirror.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index c9780f7bec20..9026643d7b2e 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -6,7 +6,7 @@ on: push: branches: - - 'master' + - 'main' jobs: mirror_job: @@ -14,12 +14,12 @@ jobs: pull-requests: write runs-on: ubuntu-latest if: ${{ github.repository == 'flutter/plugins' }} - name: Mirror master branch to main branch + name: Mirror main branch to master branch steps: - name: Mirror action step id: mirror uses: google/mirror-branch-action@c6b07e441a7ffc5ae15860c1d0a8107a3a151db8 with: github-token: ${{ secrets.FLUTTERMIRRORINGBOT_TOKEN }} - source: 'master' - dest: 'main' + source: 'main' + dest: 'master'