Merge pull request #63 from the-virtual-brain/VT-81 #32
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
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/*" |