Skip to content

Commit febc762

Browse files
committed
create workflow to sync main branch to branch-25.08
1 parent 2534057 commit febc762

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
22+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
23+
FROM_BRANCH: "main"
24+
TO_BRANCH: "branch-25.08"

0 commit comments

Comments
 (0)