Skip to content

Commit

Permalink
Update check cond and test
Browse files Browse the repository at this point in the history
  • Loading branch information
anngvu committed Feb 22, 2024
1 parent 5b6fe2c commit ea4ef31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ jobs:
- name: Check changes in any of the schema files
run: |
if git diff-index --quiet HEAD --; then
echo 'FOLLOWUP_COMMIT=true' >> $GITHUB_ENV
echo 'FOLLOWUP_COMMIT=yes' >> $GITHUB_ENV
else
echo 'FOLLOWUP_COMMIT=false' >> $GITHUB_ENV
echo 'FOLLOWUP_COMMIT=no' >> $GITHUB_ENV
fi
- name: Commit files
if: ${{ env.FOLLOWUP_COMMIT == true }}
if: ${{ env.FOLLOWUP_COMMIT == 'yes' }}
run: |
git config --local user.email "[email protected]"
git config --local user.name "nf-osi[bot]"
git add .
git commit -m "Rebuild NF.jsonld, json"
- name: Push changes
if: ${{ env.FOLLOWUP_COMMIT == true }}
if: ${{ env.FOLLOWUP_COMMIT == 'no' }}
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions modules/Assay/Assay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ enums:
"A standardized measure designed to detect behavioral and emotional problems in children and adolescents.
It is completed by the parent/caretaker who spends the most time with the child and provides ratings for 20 competence and 120 problem items. [ NCI ]"
meaning: http://purl.obolibrary.org/obo/NCIT_C165711
CODEX:
description: CODEX imaging.
Corsi blocks:
description: >
A visuospatial counterpart to the verbal-memory span task (Milner, 1971). Over the years, it has frequently been used to assess visuospatial short-term memory performance in adults
Expand Down

0 comments on commit ea4ef31

Please sign in to comment.