We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2534057 commit febc762Copy full SHA for febc762
1 file changed
.github/workflows/branch-migration-sync.yaml
@@ -0,0 +1,24 @@
1
+name: Sync main to branch-25.08 (migration)
2
+on:
3
+ push:
4
+ # branches:
5
+ # - main
6
+
7
+jobs:
8
+ sync-branches:
9
+ runs-on: ubuntu-latest
10
+ name: Syncing branches
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
+ - name: Set up Node
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20
18
+ - name: Opening pull request
19
+ id: pull
20
+ uses: tretuna/sync-branches@1.4.0
21
22
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
23
+ FROM_BRANCH: "main"
24
+ TO_BRANCH: "branch-25.08"
0 commit comments