workflows update
Update a workflow in a namespace
Synopsis
Description
Update the metadata of an existing workflow specified by WORKFLOW_ID
. You can modify the name, description, and authors of the workflow using the provided flags.
Examples
Update the name of an existing workflow with the given WORKFLOW_ID
:
Update the description of the workflow using a Markdown description from a file:
Update the authors of the workflow using a comma-separated list:
You can also provide authors as JSON data:
Or you can specify authors from a JSON file:
Positional Arguments
WORKFLOW_ID
WORKFLOW_ID
The unique identifier of the workflow you want to update.
Flags
--name
=TEXT
--name
=TEXT
Change the human-readable name of the workflow.
--description
=FILE|TEXT
--description
=FILE|TEXT
Provide or update the description of the workflow. You can either provide the description directly as text or use a file containing the description in Markdown format.
--authors
=TEXT|JSON_DATA|FILE
--authors
=TEXT|JSON_DATA|FILE
Modify the list of authors for the workflow. You can provide a comma-separated list of authors, JSON data with authors, or specify a file containing the authors' information.
Last updated