forked from XpressAI/xircuits
-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (71 loc) · 3.3 KB
/
ebrains-sync.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Mirror to Ebrains 2.0
on:
push:
branches: [ master, dev ]
jobs:
to_ebrains:
runs-on: ubuntu-latest
steps:
- name: syncmaster
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "master"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_SECRET }}@gitlab.ebrains.eu/ri/tech-hub/apps/tvb/tvb-ext-xircuits-mirror.git"
destination_branch: "master"
- name: syncdev
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "dev"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_SECRET }}@gitlab.ebrains.eu/ri/tech-hub/apps/tvb/tvb-ext-xircuits-mirror.git"
destination_branch: "dev"
- name: synctags
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "refs/tags/*"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_SECRET }}@gitlab.ebrains.eu/ri/tech-hub/apps/tvb/tvb-ext-xircuits-mirror.git"
destination_branch: "refs/tags/*"
- name: syncmaster
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "master"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_WP3 }}@gitlab.ebrains.eu/ri/projects-and-initiatives/ebrains-2/wp3/tools/tvb-ext-xircuits-mirror.git"
destination_branch: "master"
- name: syncdev
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "dev"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_WP3 }}@gitlab.ebrains.eu/ri/projects-and-initiatives/ebrains-2/wp3/tools/tvb-ext-xircuits-mirror.git"
destination_branch: "dev"
- name: synctags
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "refs/tags/*"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_2_0_WP3 }}@gitlab.ebrains.eu/ri/projects-and-initiatives/ebrains-2/wp3/tools/tvb-ext-xircuits-mirror.git"
destination_branch: "refs/tags/*"
- name: syncmaster
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "master"
destination_repo: "https://ghpusher:${{ secrets.TWIN_GITLAB }}@gitlab.ebrains.eu/ri/projects-and-initiatives/virtualbraintwin/tools/ext-xircuits.git"
destination_branch: "master"
- name: syncdev
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "dev"
destination_repo: "https://ghpusher:${{ secrets.TWIN_GITLAB }}@gitlab.ebrains.eu/ri/projects-and-initiatives/virtualbraintwin/tools/ext-xircuits.git"
destination_branch: "dev"
- name: synctags
uses: wei/git-sync@v3
with:
source_repo: "the-virtual-brain/tvb-ext-xircuits"
source_branch: "refs/tags/*"
destination_repo: "https://ghpusher:${{ secrets.TWIN_GITLAB }}@gitlab.ebrains.eu/ri/projects-and-initiatives/virtualbraintwin/tools/ext-xircuits.git"
destination_branch: "refs/tags/*"