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
For more information about universes, see the Google Cloud documentation.
88
90
@@ -104,9 +106,11 @@ jobs:
104
106
unless quoted. Any leading or trailing whitespace is trimmed unless values
105
107
are quoted.
106
108
107
-
labels: |-
108
-
labela=my-label
109
-
labelb=my-other-label
109
+
```yaml
110
+
labels: |-
111
+
labela=my-label
112
+
labelb=my-other-label
113
+
```
110
114
111
115
This value will only be set if the input is a non-empty value. If a
112
116
non-empty value is given, the field values will be overwritten (not
@@ -136,9 +140,11 @@ jobs:
136
140
`\\n`) unless quoted. Any leading or trailing whitespace is trimmed unless
137
141
values are quoted.
138
142
139
-
build_environment_variables: |-
140
-
FRUIT=apple
141
-
SENTENCE=" this will retain leading and trailing spaces "
143
+
```yaml
144
+
build_environment_variables: |-
145
+
FRUIT=apple
146
+
SENTENCE=" this will retain leading and trailing spaces "
147
+
```
142
148
143
149
This value will only be set if the input is a non-empty value. If a
144
150
non-empty value is given, the field values will be overwritten (not
@@ -197,9 +203,11 @@ jobs:
197
203
(e.g. `\,` or `\\n`) unless quoted. Any leading or trailing whitespace is
198
204
trimmed unless values are quoted.
199
205
200
-
environment_variables: |-
201
-
FRUIT=apple
202
-
SENTENCE=" this will retain leading and trailing spaces "
206
+
```yaml
207
+
environment_variables: |-
208
+
FRUIT=apple
209
+
SENTENCE=" this will retain leading and trailing spaces "
210
+
```
203
211
204
212
This value will only be set if the input is a non-empty value. If a
205
213
non-empty value is given, the field values will be overwritten (not
@@ -232,13 +240,16 @@ jobs:
232
240
volumes. Keys starting with a forward slash '/' are mount paths. All other
233
241
keys correspond to environment variables:
234
242
235
-
with:
236
-
secrets: |-
237
-
# As an environment variable:
238
-
KEY1=secret-key-1:latest
239
243
240
-
# As a volume mount:
241
-
/secrets/api/key=secret-key-2:latest
244
+
```yaml
245
+
with:
246
+
secrets: |-
247
+
# As an environment variable:
248
+
KEY1=secret-key-1:latest
249
+
250
+
# As a volume mount:
251
+
/secrets/api/key=secret-key-2:latest
252
+
```
242
253
243
254
This value will only be set if the input is a non-empty value. If a
244
255
non-empty value is given, the field values will be overwritten (not
@@ -280,6 +291,30 @@ jobs:
280
291
281
292
The available trigger types may change over time.
282
293
294
+
- <a name="event_trigger_filters"></a><a href="#user-content-event_trigger_filters"><code>event_trigger_filters</code></a>: _(Optional)_ List of event filters that the trigger should monitor. An event that
295
+
matches all the filteres will trigger calls to the function. These are
296
+
comma-separated or newline-separated `ATTRIBUTE=VALUE`. Attributes or
297
+
values that contain separators must be escaped with a backslash (e.g. `\,`
298
+
or `\\n`) unless quoted. To treat a value as a path pattern, prefix the
299
+
value with the literal string `PATTERN:`. Any leading or trailing
- <a name="event_trigger_pubsub_topic"></a><a href="#user-content-event_trigger_pubsub_topic"><code>event_trigger_pubsub_topic</code></a>: _(Optional)_ Name of Google Cloud Pub/Sub topic. Every message published in this topic
284
319
will trigger function execution with message contents passed as input
0 commit comments