Skip to content

Commit

Permalink
fix code issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ryma2fhir committed Oct 3, 2023
1 parent c8b7fa9 commit 978597b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ClinicalObservations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ jobs:
run: sleep $((RANDOM % 1))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds

- name: Check for changes #If no changes found then exit action, otherwise pass
run: if git diff --exit-code; then
echo "No changes detected"
exit 0
else
"Changes detected"
fi
run: |
if git diff --exit-code; then
echo "No changes detected"
exit 0
else
"Changes detected"
fi
- name: Create branch and commit
run: |
Expand Down

0 comments on commit 978597b

Please sign in to comment.