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
help="Capture stack trace of first failed task in exit hook.",
229
229
)
230
+
@click.option(
231
+
"--workflow-title",
232
+
default=None,
233
+
type=str,
234
+
help="Custom title for the workflow displayed in Argo Workflows UI. Defaults to `project_flow_name`. Supports markdown formatting.",
235
+
)
236
+
@click.option(
237
+
"--workflow-description",
238
+
default=None,
239
+
type=str,
240
+
help="Custom description for the workflow displayed in Argo Workflows UI. Defaults to the flow's docstring if available. Supports markdown formatting and multi-line text.",
241
+
)
230
242
@click.pass_obj
231
243
defcreate(
232
244
obj,
@@ -248,6 +260,8 @@ def create(
248
260
incident_io_alert_source_config_id=None,
249
261
incident_io_metadata=None,
250
262
enable_heartbeat_daemon=True,
263
+
workflow_title=None,
264
+
workflow_description=None,
251
265
deployer_attribute_file=None,
252
266
enable_error_msg_capture=False,
253
267
):
@@ -312,6 +326,8 @@ def create(
312
326
incident_io_metadata,
313
327
enable_heartbeat_daemon,
314
328
enable_error_msg_capture,
329
+
workflow_title,
330
+
workflow_description,
315
331
)
316
332
317
333
ifonly_json:
@@ -658,6 +674,8 @@ def make_flow(
658
674
incident_io_metadata,
659
675
enable_heartbeat_daemon,
660
676
enable_error_msg_capture,
677
+
workflow_title,
678
+
workflow_description,
661
679
):
662
680
# TODO: Make this check less specific to Amazon S3 as we introduce
0 commit comments