We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
main
master
1 parent ed2d06e commit 6322b2dCopy full SHA for 6322b2d
1 file changed
.github/workflows/sync-master-from-main.yml
@@ -0,0 +1,21 @@
1
+name: sync master from main
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ sync-branches:
10
+ runs-on: ubuntu-latest
11
+ name: Keep master and main in sync until master is done
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v3
15
+ - name: Merge master <- main
16
+ uses: devmasx/merge-branch@master
17
+ with:
18
+ type: now
19
+ from_branch: main
20
+ target_branch: master
21
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments