Skip to content

Commit 58dc03d

Browse files
authored
Merge pull request #1754 from ror-community/pull-scripts-from-main
pull scripts used in actions from main instead of working branches
2 parents a6c4fef + ab36a43 commit 58dc03d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/generate_relationships.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install requests==2.23.0
3333
pip install git+https://github.com/ror-community/update_address.git
34-
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/generate_relationships/generate_relationships.py -o generate_relationships.py
34+
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/generate_relationships/generate_relationships.py -o generate_relationships.py
3535
python generate_relationships.py relationships.csv
3636
- name: commit error file
3737
if: ${{ steps.genrelshp.outcome != 'success'}}

.github/workflows/remove_relationships.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install requests==2.23.0
3333
pip install git+https://github.com/ror-community/update_address.git
34-
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/remove_relationships/remove_relationships.py -o remove_relationships.py
34+
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/remove_relationships/remove_relationships.py -o remove_relationships.py
3535
python remove_relationships.py relationships.csv
3636
- name: commit error file
3737
if: ${{ steps.remrelshp.outcome != 'success'}}

.github/workflows/update_labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
working-directory: ${{ env.WORKING_DIR }}
3030
run: |
3131
python -m pip install --upgrade pip
32-
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/requirements.txt -o requirements.txt
32+
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/requirements.txt -o requirements.txt
3333
pip install -r requirements.txt
34-
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/update_related.py -o update_related.py
34+
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/update_related.py -o update_related.py
3535
python update_related.py
3636
- name: commit changed files
3737
if: ${{ steps.updatelabels.outcome == 'success'}}

.github/workflows/validate.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
with:
2828
repository: ror-community/validation-suite
2929
path: validation-suite
30-
ref: dev
3130
- name: Get directory name
3231
if: "${{ github.event.inputs.directory-name != '' }}"
3332
run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)