Skip to content

Commit eb207ba

Browse files
committed
use plain git
1 parent 5236544 commit eb207ba

1 file changed

Lines changed: 21 additions & 11 deletions

File tree

.github/workflows/branch-migration-sync.yaml

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,25 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
- name: Set up Node
15-
uses: actions/setup-node@v4
1614
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"
25-
TEAM_REVIEWERS: '["RAPIDS/ci-codeowners"]'
15+
ref: "branch-25.08"
16+
- shell: bash
17+
run: |
18+
git config --global user.email "noreply@nvidia.com"
19+
git config --global user.name "NVIDIA RAPIDS Bot"
20+
git config --global push.default current
21+
git config --global pull.rebase true
22+
git pull --rebase origin main
23+
git push origin branch-25.08
24+
# - name: Set up Node
25+
# uses: actions/setup-node@v4
26+
# with:
27+
# node-version: 20
28+
# - name: Opening pull request
29+
# id: pull
30+
# uses: tretuna/sync-branches@1.4.0
31+
# with:
32+
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
33+
# FROM_BRANCH: "main"
34+
# TO_BRANCH: "branch-25.08"
35+
# TEAM_REVIEWERS: '["RAPIDS/ci-codeowners"]'

0 commit comments

Comments
 (0)