Merge pull request #8 from actions/injection-mitigation

Further command injection mitigation
This commit is contained in:
Ethan Dennis
2022-12-14 13:05:10 -08:00
committed by GitHub
+1 -1
View File
@@ -63,7 +63,7 @@ jobs:
COMMENT_BODY: ${{ github.event.comment.body }}
LABELS: ${{ toJSON(github.event.issue.labels.*.name) }}
run: |
./bin/parse_issue "${{ env.ISSUE_BODY }}" "${{ env.COMMENT_BODY }}" "${{ env.LABELS }}"
./bin/parse_issue "$ISSUE_BODY" "$COMMENT_BODY" "$LABELS"
- name: Validate arguments
run: |
if [ -z "${{ steps.prepare.outputs.provider }}" ]; then