Merge pull request #3717 from thomaskroi1996/replace-numpy.in1d #668
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 Codebase Helmholtz Cloud | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| sync_to_jsc: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'nest' }} | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| disable-telemetry: true | |
| - name: sycnmaster | |
| uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 | |
| with: | |
| source_repo: "nest/nest-simulator" | |
| source_branch: "master" | |
| destination_repo: "https://ghpusher:${{ secrets.HGF_GITLAB_TOKEN }}@codebase.helmholtz.cloud/nest/nest-simulator.git" | |
| destination_branch: "master" | |
| - name: synctags | |
| uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 | |
| with: | |
| source_repo: "nest/nest-simulator" | |
| source_branch: "refs/tags/v*" | |
| destination_repo: "https://ghpusher:${{ secrets.HGF_GITLAB_TOKEN }}@codebase.helmholtz.cloud/nest/nest-simulator.git" | |
| destination_branch: "refs/tags/v*" |