diff --git a/.github/workflows/sanitize_production_sms_usage.yml b/.github/workflows/sanitize_production_sms_usage.yml index 77c7f3664..2954984f7 100644 --- a/.github/workflows/sanitize_production_sms_usage.yml +++ b/.github/workflows/sanitize_production_sms_usage.yml @@ -37,5 +37,5 @@ jobs: - name: Notify Slack channel if this job failed if: ${{ failure() }} run: | - json="{'text':' Sanitize production SMS usage data failed in !'}" + json='{"text":" Sanitize production SMS usage data failed in !"}' curl -X POST -H 'Content-type: application/json' --data "$json" ${{ secrets.NOTIFY_DEV_SLACK_WEBHOOK }} diff --git a/.github/workflows/sanitize_staging_sms_usage.yml b/.github/workflows/sanitize_staging_sms_usage.yml index 2c4e19211..c3880c5b4 100644 --- a/.github/workflows/sanitize_staging_sms_usage.yml +++ b/.github/workflows/sanitize_staging_sms_usage.yml @@ -37,5 +37,5 @@ jobs: - name: Notify Slack channel if this job failed if: ${{ failure() }} run: | - json="{'text':' Sanitize staging SMS usage data failed in !'}" + json='{"text":" Sanitize staging SMS usage data failed in !"}' curl -X POST -H 'Content-type: application/json' --data "$json" ${{ secrets.NOTIFY_DEV_SLACK_WEBHOOK }}