Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Reverse mirroring order. (#685)
Browse files Browse the repository at this point in the history
This is to set main as default branch.

Bug: #655
  • Loading branch information
godofredoc authored May 18, 2022
1 parent 221023a commit 67ffc55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
on:
push:
branches:
- 'master'
- 'main'

jobs:
mirror_job:
permissions:
pull-requests: write
runs-on: ubuntu-latest
if: ${{ github.repository == 'flutter/gallery' }}
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'

0 comments on commit 67ffc55

Please sign in to comment.