You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2025. It is now read-only.
This event target receives [CloudEvents][ce] over HTTP and sends them to [Google Cloud Workflows](https://cloud.google.com/workflows)
4
+
5
+
## Prerequisite(s)
6
+
7
+
- Google Cloud Console account.
8
+
- A service account and it's associated JSON credentials.
9
+
10
+
## Deploying an Instance of the Target
11
+
12
+
Open the Bridge creation screen and add a target of type `Google Cloud Workflows`.
13
+
14
+
In the Target creation form, give a name to the event Target and add the following information:
15
+
16
+
-**Credentials**: Reference to a [TriggerMesh secret](../guides/secrets.md) containing the JSON credentials of a Service Account.
17
+
18
+
After clicking the `Save` button, you will be taken back to the Bridge editor. Proceed to adding the remaining
19
+
components to the Bridge, then submit it.
20
+
21
+
A ready status on the main _Bridges_ page indicates that the Google Cloud Workflows target is ready to accept events.
22
+
23
+
For more information about using Google Cloud Workflows, please refer to the [documentation][https://cloud.google.com/workflows/docs].
24
+
25
+
## Event Types
26
+
### io.trigermesh.google.workflows.run
27
+
28
+
Events of this type contain nuanced data that is used to run a Google Workflow.
29
+
30
+
This type expects a [JSON][ce-jsonformat] payload with the following properties:
31
+
32
+
| Name | Type | Comment | Example
33
+
|---|---|---|---|
34
+
|**parent**| string | Project and location in which the workflow should be created. Format: `projects/{project}/locations/{location}`| "projects/ultra-hologram-297914/locations/us-central1" |
35
+
|**executionName**| string | The resource name of the execution. Format: `projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}`| "demowf" |
0 commit comments