From c8d9f7621403531172f8b7ba4875d06a9ec67933 Mon Sep 17 00:00:00 2001 From: Godofredo Contreras Date: Mon, 15 Nov 2021 09:28:36 -0800 Subject: [PATCH] Reverse the order of mirroring. This is because now the default branch is main. Bug: https://github.com/flutter/flutter/issues/90476 --- .github/workflows/mirror.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 4d78140daf458..dc2baf82fc88c 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -6,7 +6,7 @@ on: push: branches: - - 'master' + - 'main' jobs: mirror_job: @@ -21,5 +21,5 @@ jobs: uses: google/mirror-branch-action@c6b07e441a7ffc5ae15860c1d0a8107a3a151db8 with: github-token: ${{ secrets.FLUTTERGITHUBBOT_TOKEN }} - source: 'master' - dest: 'main' + source: 'main' + dest: 'master'