forked from tonstack/lite-client
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f18a4f1
commit 1c6d621
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Sync Fork | ||
|
||
on: | ||
schedule: | ||
- cron: '0 * * * *' # Runs every hour | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Git | ||
run: | | ||
git config --global user.name 'dbaranovstonfi' | ||
git config --global user.email '[email protected]' | ||
- name: Fetch all branches | ||
run: git fetch --all | ||
|
||
- name: Add remote upstream | ||
run: git remote add upstream https://github.com/tonstack/lite-client | ||
|
||
- name: Fetch upstream branches | ||
run: git fetch upstream | ||
|
||
- name: Sync branches | ||
run: | | ||
for branch in $(git branch -r | grep upstream | grep -v '\->' | sed 's|upstream/||'); do | ||
git checkout $branch 2>/dev/null || git checkout -b $branch upstream/$branch | ||
git merge upstream/$branch --strategy-option theirs || git checkout --theirs . | ||
done | ||
- name: Push changes | ||
env: | ||
PAT: ${{ secrets.PAT }} | ||
run: | | ||
for branch in $(git branch -r | grep upstream | grep -v '\->' | sed 's|upstream/||'); do | ||
git push https://dbaranovstonfi:${PAT}@github.com/ston-fi/lite-client $branch | ||
done |