Skip to content

Commit

Permalink
Merge pull request #1599 from ror-community/update-actions
Browse files Browse the repository at this point in the history
Update actions for org status changes
  • Loading branch information
adambuttrick authored Nov 16, 2022
2 parents 00b35bf + 1030882 commit c899a17
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate_relationships.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
python -m pip install --upgrade pip
pip install requests==2.23.0
pip install git+https://github.com/ror-community/update_address.git
curl https://raw.githubusercontent.com/ror-community/ror-api/dev/rorapi/management/commands/generaterelationships.py -o generaterelationships.py
python generaterelationships.py relationships.csv
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/generate_relationships/generate_relationships.py -o generate_relationships.py
python generate_relationships.py relationships.csv
- name: commit error file
if: ${{ steps.genrelshp.outcome != 'success'}}
working-directory: ${{ env.WORKING_DIR }}
Expand Down
65 changes: 65 additions & 0 deletions .github/workflows/remove_relationships.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Remove relationships to inactive records
on:
workflow_dispatch:
inputs:
directory-name:
type: string
description: Name of parent directory containing new/updated records with inactive statuses. Needed only if different from branch name.

jobs:
remove-relationships:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.ref }}
- name: Set up Python environment
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Get directory name
if: "${{ github.event.inputs.directory-name != '' }}"
run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV
- name: Get branch name
if: "${{ github.event.inputs.directory-name == '' }}"
run: echo "WORKING_DIR=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
- name: Remove relationships
id: remrelshp
working-directory: ${{ env.WORKING_DIR }}
run: |
python -m pip install --upgrade pip
pip install requests==2.23.0
pip install git+https://github.com/ror-community/update_address.git
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/remove_relationships/remove_relationships.py -o remove_relationships.py
python remove_relationships.py relationships.csv
- name: commit error file
if: ${{ steps.remrelshp.outcome != 'success'}}
working-directory: ${{ env.WORKING_DIR }}
run: |
echo "ERRORS found for some records:"
cat relationship_errors.log
- name: commit changed files
if: ${{ steps.remrelshp.outcome == 'success'}}
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: ${{ env.WORKING_DIR }}/**.json
commit_message: Apply relationship changes to files
- name: Set env variable for notification
if: always()
run: |
if [[ ${{ steps.remrelshp.outcome }} == 'success' ]]; then
echo "relationship_status=SUCCESS" >> $GITHUB_ENV
else
echo "relationship_status=FAILED" >> $GITHUB_ENV
fi
- name: Notify Slack
if: always()
uses: edge/simple-slack-notify@master
env:
SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }}
VALIDATION_STATUS: ${{ env.relationship_status }}
with:
channel: '#ror-curation-releases'
color: 'good'
text: 'Relationship removal status: ${env.VALIDATION_STATUS}. Branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID} for more details'
5 changes: 2 additions & 3 deletions .github/workflows/update_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
working-directory: ${{ env.WORKING_DIR }}
run: |
python -m pip install --upgrade pip
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/requirements.txt -o requirements.txt
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/requirements.txt -o requirements.txt
pip install -r requirements.txt
curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/update_related.py -o update_related.py
curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/update_related.py -o update_related.py
python update_related.py
- name: commit changed files
if: ${{ steps.updatelabels.outcome == 'success'}}
Expand All @@ -57,4 +57,3 @@ jobs:
channel: '#ror-curation-releases'
color: 'good'
text: '${env.GITHUB_REPOSITORY}: Update labels in related records status: ${env.VALIDATION_STATUS}. Branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID} for more details'

1 change: 1 addition & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
with:
repository: ror-community/validation-suite
path: validation-suite
ref: dev
- name: Get directory name
if: "${{ github.event.inputs.directory-name != '' }}"
run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV
Expand Down

0 comments on commit c899a17

Please sign in to comment.