This topic was automatically generated from Slack. You can find the original thread here.
Hey folks im experiencing some issues with Slack messages (GCP pub / sub → slack).
My message should look something like this
🚨 **Stripe Webhook Timeout** 🚨
Function `stripeWebhooks` timed out during execution.
**Execution ID:** `{{steps.trigger.event.labels.execution_id}}
But I get this error:
SyntaxError
Unexpected identifier 'stripeWebhooks'
Then I tried to change it to this
🚨 **Stripe Webhook Timeout** 🚨
**Execution ID:** `{{steps.trigger.event.labels.execution_id}}
and I get this error
SyntaxError
Unexpected identifier '$'
Then I tried to test just this:
{{steps.trigger.event.labels.execution_id}}
(note: without the backticks)
And it correctly sends the exectution id in slack message.
Would really love some help getting this sorted out. I might be doing something obviously wrong lol, but I’ve been stuck on this for quite some time now