diff --git a/.github/workflows/Zapier.yml b/.github/workflows/Zapier.yml index 4eb356b3..fd0932dd 100644 --- a/.github/workflows/Zapier.yml +++ b/.github/workflows/Zapier.yml @@ -20,10 +20,12 @@ jobs: # Runs a set of commands using the runners shell - name: Call Zapier web hook to close Asana task if: ${{ !github.event.issue.pull_request }} + env: + ISSUE_TITLE: ${{ github.event.issue.title }} run: | curl --location --request POST 'https://hooks.zapier.com/hooks/catch/12728683/b7009qc/' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data-raw '{ - "task_name" : "${{ github.event.issue.title }}" + "task_name" : "$ISSUE_TITLE" }'