Skip to content

Commit 21fbe55

Browse files
authored
fix: automated sync main-experimental (#1196)
Signed-off-by: Pravus <pravusjif@gmail.com>
1 parent 0b18702 commit 21fbe55

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/sync-main-to-experimental.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
jobs:
99
sync:
1010
runs-on: ubuntu-latest
11-
continue-on-error: true
1211

1312
permissions:
1413
contents: write
@@ -27,6 +26,7 @@ jobs:
2726
git config pull.rebase false # Always merge, never rebase
2827
2928
- name: Sync main into experimental branch
29+
continue-on-error: true
3030
run: |
3131
BRANCH_NAME="chore/sync"
3232
git checkout -B $BRANCH_NAME origin/experimental
@@ -41,6 +41,8 @@ jobs:
4141
make build
4242
make update-snapshots
4343
44+
- name: Commit and push changes in experimental
45+
run: |
4446
# Commit if there are changes
4547
git add -A .
4648
git commit --no-edit -m "updated protocol and snapshots" || echo "No changes to commit"

0 commit comments

Comments
 (0)