Skip to content

Commit

Permalink
feat: add git flow (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovkman authored Nov 15, 2024
2 parents fc8e5a2 + 541d86b commit 5904513
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Sync helius from upstream rpcpool"

on:
# push:
schedule:
- cron: "00 19 * * 1-5"
workflow_dispatch:
jobs:
git-sync-branches:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "rpcpool/yellowstone-grpc"
destination_repo: "helius-labs/yellowstone-grpc"
source_branch: "refs/remotes/source/*"
destination_branch: "refs/heads/*"
git-sync-tags:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "rpcpool/yellowstone-grpc"
destination_repo: "helius-labs/yellowstone-grpc"
source_branch: "refs/remotes/source/*"
destination_branch: "refs/heads/*"
git-rebase:
runs-on: ubuntu-latest
steps:
- name: git-rebase
uses: tiacsys/git-rebase@v3
with:
repo: "rpcpool/yellowstone-grpc"
source_branch: "master"
destination_branch: "master"

0 comments on commit 5904513

Please sign in to comment.