From 2f37ed537dee511fcc73976b521f4b2b16dfcd7e Mon Sep 17 00:00:00 2001 From: karola312 Date: Thu, 16 May 2024 10:36:39 +0200 Subject: [PATCH] Fix quotes --- ...automation-tests-on-repository-dispatch.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/automation-tests-on-repository-dispatch.yml b/.github/workflows/automation-tests-on-repository-dispatch.yml index 83d16738147..24abce4b1bb 100644 --- a/.github/workflows/automation-tests-on-repository-dispatch.yml +++ b/.github/workflows/automation-tests-on-repository-dispatch.yml @@ -59,13 +59,13 @@ jobs: ) gh api /repos/saleor/saleor-cloud-deployments/dispatches \ - --input - <<< '{ - "event_type": "open-release-pull-request", - "client_payload": { - "project": "CORE", - "environment": "SANDBOX", - "version": "$VERSION" - "details_url_to_test_run": "$DETAILS_URL_TO_TEST_RUN" - "test_status": "$TEST_STATUS" + --input - <<< "{ + \"event_type\": \"open-release-pull-request\", + \"client_payload\": { + \"project\": \"CORE\", + \"environment\": \"SANDBOX\", + \"version\": \"$VERSION\" + \"details_url_to_test_run\": \"$DETAILS_URL_TO_TEST_RUN\" + \"test_status\": \"$TEST_STATUS\" } - }' + }"