Skip to content

Commit d3f17b0

Browse files
authored
Mirror master to main branch. (flutter#28896)
1 parent 1b5b3c0 commit d3f17b0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/mirror.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Copyright 2013 The Flutter Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
# Mirror master to main branches in the engine repository.
6+
on:
7+
push:
8+
branches:
9+
- 'master'
10+
11+
jobs:
12+
mirror_job:
13+
permissions:
14+
pull-requests: write
15+
runs-on: ubuntu-latest
16+
name: Mirror main branch to master branch
17+
steps:
18+
- name: Mirror action step
19+
id: mirror
20+
uses: google/mirror-branch-action@c6b07e441a7ffc5ae15860c1d0a8107a3a151db8
21+
with:
22+
github-token: ${{ secrets.FLUTTERGITHUBBOT_TOKEN }}
23+
source: 'master'
24+
dest: 'main'

0 commit comments

Comments
 (0)