diff --git a/.github/workflows/dev_manual_index.yml b/.github/workflows/dev_manual_index.yml index b832d1103..842ab2f88 100644 --- a/.github/workflows/dev_manual_index.yml +++ b/.github/workflows/dev_manual_index.yml @@ -56,7 +56,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles diff --git a/.github/workflows/dev_pull_request.yml b/.github/workflows/dev_pull_request.yml index 850f3e508..97be333a5 100644 --- a/.github/workflows/dev_pull_request.yml +++ b/.github/workflows/dev_pull_request.yml @@ -49,7 +49,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles diff --git a/.github/workflows/generate_dump.yml b/.github/workflows/generate_dump.yml index 9f9daee56..5116f63c7 100644 --- a/.github/workflows/generate_dump.yml +++ b/.github/workflows/generate_dump.yml @@ -43,7 +43,6 @@ jobs: with: repository: ror-community/curation_ops token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - ref: v2-crosswalk path: ./curation_ops - name: Set up Python environment uses: actions/setup-python@v2 diff --git a/.github/workflows/generate_dump_v2_initial_release.yml b/.github/workflows/generate_dump_v2_initial_release.yml index d7d85a798..8196c92c8 100644 --- a/.github/workflows/generate_dump_v2_initial_release.yml +++ b/.github/workflows/generate_dump_v2_initial_release.yml @@ -50,7 +50,6 @@ jobs: with: repository: ror-community/curation_ops token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - ref: v2-crosswalk path: ./curation_ops - name: Set up Python environment uses: actions/setup-python@v2 diff --git a/.github/workflows/generate_relationships.yml b/.github/workflows/generate_relationships.yml index 63cfa3feb..66129cf5d 100644 --- a/.github/workflows/generate_relationships.yml +++ b/.github/workflows/generate_relationships.yml @@ -37,7 +37,7 @@ jobs: run: | python -m pip install --upgrade pip pip install requests==2.23.0 - curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/generate_relationships/generate_relationships.py -o generate_relationships.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/generate_relationships/generate_relationships.py -o generate_relationships.py if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then python generate_relationships.py relationships.csv -v 1 fi diff --git a/.github/workflows/remove_relationships.yml b/.github/workflows/remove_relationships.yml index a79c7471b..c1fc27ca3 100644 --- a/.github/workflows/remove_relationships.yml +++ b/.github/workflows/remove_relationships.yml @@ -37,7 +37,7 @@ jobs: run: | python -m pip install --upgrade pip pip install requests==2.23.0 - curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/remove_relationships/remove_relationships.py -o remove_relationships.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/remove_relationships/remove_relationships.py -o remove_relationships.py if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then python remove_relationships.py -v 1 fi diff --git a/.github/workflows/update_addresses.yml b/.github/workflows/update_addresses.yml index d876906df..82cf7489a 100644 --- a/.github/workflows/update_addresses.yml +++ b/.github/workflows/update_addresses.yml @@ -37,8 +37,8 @@ jobs: run: | python -m pip install --upgrade pip pip install requests==2.23.0 - pip install git+https://github.com/ror-community/update_address.git@v2-locations - curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_address_only/update_addresses.py -o update_addresses.py + pip install git+https://github.com/ror-community/update_address.git + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_address_only/update_addresses.py -o update_addresses.py if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then python update_addresses.py -v 1 fi diff --git a/.github/workflows/update_labels.yml b/.github/workflows/update_labels.yml index e4dfba52c..5c979bb0b 100644 --- a/.github/workflows/update_labels.yml +++ b/.github/workflows/update_labels.yml @@ -36,9 +36,9 @@ jobs: working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip - curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/requirements.txt -o requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/requirements.txt -o requirements.txt pip install -r requirements.txt - curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/update_related.py -o update_related.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/update_related.py -o update_related.py if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then python update_related.py -v 1 fi diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a89a80c23..5e47293db 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -36,7 +36,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Get directory name if: "${{ github.event.inputs.directory-name != '' }}"