forked from rpcpool/yellowstone-grpc
-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (46 loc) · 1.41 KB
/
rebase.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: "Sync helius from upstream rpcpool"
on:
# push:
schedule:
- cron: "00 19 * * 1-5"
workflow_dispatch:
pull_request:
jobs:
git-sync-branches:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "https://github.com/rpcpool/yellowstone-grpc"
destination_repo: "https://github.com/helius-labs/yellowstone-grpc"
source_branch: "refs/remotes/source/*"
destination_branch: "refs/heads/*"
git_config: |
user.name=GitHub Actions
git-sync-tags:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "https://github.com/rpcpool/yellowstone-grpc"
destination_repo: "https://github.com/helius-labs/yellowstone-grpc"
source_branch: "refs/remotes/source/*"
destination_branch: "refs/heads/*"
git_config: |
user.name=GitHub Actions
git-rebase:
runs-on: ubuntu-latest
steps:
- name: git-rebase
uses: tiacsys/[email protected]
with:
repo: "https://github.com/rpcpool/yellowstone-grpc"
source_branch: "master"
destination_branch: "master"
git_config: |
user.name=GitHub Actions