Added a new job to check for changed files before executing the CI workflow. Integrated Tinybird local service, updated environment variables, and refined the CI steps for better functionality and clarity.
17 lines
464 B
Plaintext
17 lines
464 B
Plaintext
NODE mv
|
|
SQL >
|
|
SELECT
|
|
timestamp,
|
|
workspaceId,
|
|
JSONExtractString(payload, 'webhookId') as webhookId,
|
|
JSONExtractString(payload, 'url') as url,
|
|
JSONExtractBool(payload, 'success') as success,
|
|
JSONExtractInt(payload, 'status') as status,
|
|
JSONExtractString(payload, 'eventName') as eventName,
|
|
version
|
|
FROM 'event'
|
|
WHERE action = 'webhook.response'
|
|
|
|
TYPE MATERIALIZED
|
|
DATASOURCE webhookEventMV
|