SetProjectMetadataAttribute

The SetProjectMetadataAttribute action sets a metadata attribute at the project level. Project metadata attributes store additional configuration data that supplements the standard project attributes.

SetProjectMetadataAttribute(
    field: str,
    value: str
)

Where:

  • field: The name of the project metadata attribute to set.
  • value: The value to assign to the metadata attribute.

Example

{{SetProjectMetadataAttribute(field="last_updated_by", value="admin")}}

The above code snippet sets the project metadata attribute "last_updated_by" to "admin."