This repository was archived by the owner on May 25, 2026. It is now read-only.
Include logs from all Python code, not just from uvicorn #209
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [ master, staging, api-v2 ] | |
| jobs: | |
| to_ebrains: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: syncmaster | |
| uses: wei/git-sync@v3 | |
| with: | |
| source_repo: "HumanBrainProject/hbp_neuromorphic_platform" | |
| source_branch: "master" | |
| destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuromorphic/job-queue-api.git" | |
| destination_branch: "main" | |
| - name: syncstaging | |
| uses: wei/git-sync@v3 | |
| with: | |
| source_repo: "HumanBrainProject/hbp_neuromorphic_platform" | |
| source_branch: "staging" | |
| destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuromorphic/job-queue-api.git" | |
| destination_branch: "staging" | |
| - name: sync-api-v3 | |
| uses: wei/git-sync@v3 | |
| with: | |
| source_repo: "HumanBrainProject/hbp_neuromorphic_platform" | |
| source_branch: "api-v2" | |
| destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuromorphic/job-queue-api.git" | |
| destination_branch: "api-v2" | |
| - name: synctags | |
| uses: wei/git-sync@v3 | |
| with: | |
| source_repo: "HumanBrainProject/hbp_neuromorphic_platform" | |
| source_branch: "refs/tags/*" | |
| destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/neuromorphic/job-queue-api.git" | |
| destination_branch: "refs/tags/*" |