Roll cocoon tests to 5bc3916e16d57d5233a26a3d6dfcce317538f3b5 (#429) #258
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2013 The Flutter Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
# Mirror main to master branches in the tests repository. | |
on: | |
push: | |
branches: | |
- 'main' | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
mirror_job: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'flutter/tests' }} | |
name: Mirror main branch to master branch | |
steps: | |
- name: Mirror action step | |
id: mirror | |
uses: google/mirror-branch-action@30c52ee21f5d3bd7fb28b95501c11aae7f17eebb | |
with: | |
github-token: ${{ secrets.FLUTTERMIRRORINGBOT_TOKEN }} | |
source: 'main' | |
dest: 'master' |