Skip to content

Commit

Permalink
yaml fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
charlottekostelic committed Apr 10, 2024
1 parent 03d88fc commit aad98fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/monthly-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
echo "### Changed" >> $PR_BODY
echo "+ lcsh.log updated with data from workflow" >> $PR_BODY
if [[ toJSON(steps.changes.outputs.CHANGED) != {} || toJSON(steps.changes.outputs.DEPRECATED) != {} ]];
if [[ ${{ toJSON(steps.changes.outputs) != '{ \"CHANGED\":\"\", \"DEPRECATED\":\"\" }' }} ]];
echo "### Added" >> $PR_BODY
echo "+ New infile is: data/acc_in.csv" >> $PR_BODY
echo "+ Old infile is: data/acc_in_$(date "+%Y%m%d").csv" >> $PR_BODY
Expand All @@ -62,7 +62,7 @@ jobs:
--body "$PR_BODY")
- name: Create Issue
if: ${{ toJSON(steps.changes.outputs.CHANGED) != {} || toJSON(steps.changes.outputs.DEPRECATED) != {} }}
if: ${{ toJSON(steps.changes.outputs) != '{ \"CHANGED\":\"\", \"DEPRECATED\":\"\" }' }}
run: |
if [[ ! -z ${{ steps.changes.outputs.CHANGED }} ]];
echo "### Changed" >> $ISSUE_BODY
Expand Down

0 comments on commit aad98fb

Please sign in to comment.