Skip to content

Commit

Permalink
feat(CICD): fixing unclosed quote (#29221)
Browse files Browse the repository at this point in the history
Missing quote was causing a bunch of errors to be reported by email.
  • Loading branch information
victoralfaro-dotcms authored Jul 15, 2024
1 parent c6c0834 commit 4d11896
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/frontend-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ jobs:
id: resolve-actions
run: |
if [[ '${{ github.event.action == 'edited' }}' == 'true' ]]; then
actions="${{ toJSON(steps.body-technology-check.outputs.actions) }}"
actions=${{ toJSON(steps.body-technology-check.outputs.actions) }}
elif [[ '${{ github.event.action == 'labeled' }}' == 'true' ]]; then
actions="${{ toJSON(steps.label-technology-check.outputs.actions) }}"
actions=${{ toJSON(steps.label-technology-check.outputs.actions) }}
else
actions='[]'
fi
[[ "${actions}" == 'null ]] && actions='[]'
[[ "${actions}" == 'null' ]] && actions='[]'
echo "actions: ${actions}"
echo "actions=${actions}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 4d11896

Please sign in to comment.