Set differantial pair gap, width for USB data, add netclasses to 3v3,… #15
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 | |
on: ["push", "delete"] | |
jobs: | |
igem-gitlab: | |
name: iGEM GitLab | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # all branches and tags | |
- name: Mirror repository | |
uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 | |
with: | |
target_repo_url: git@gitlab.igem.org:jcxldn/City-of-London-UK_hardware.git | |
ssh_private_key: ${{ secrets.GITLAB_SSH_KEY }} | |
merge: | |
name: Merge | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Repository Dispatch | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.MERGE_PAT }} | |
repository: genoswitch/software-judging | |
event-type: merge_repo | |
client-payload: '{"job": "merge-v2", "repo": "hardware", "branch": "main", "path": "hardware/hardware"}' |