<@ULVA73B9P>, how to create a TAG for flows in pre...
# ask-marvin
b
@Marvin, how to create a TAG for flows in prefect.yaml?
m
To create tags for flows in the
prefect.yaml
file, you can use the
tags
key within the deployment configuration. Here's an example setup for `prefect.yaml`:
Copy code
yaml
# Generic metadata about this project
name: <PROJECT_NAME>
prefect-version: 2.x

# Deployments section
deployments:
  - name: <DEPLOYMENT_NAME>
    flow_name: <FLOW_NAME>
    tags:
      - <TAG1>
      - <TAG2>
    work_pool:
      name: <WORK_POOL_NAME>
    # Other deployment configurations
Replace
<PROJECT_NAME>
,
<DEPLOYMENT_NAME>
,
<FLOW_NAME>
,
<TAG1>
,
<TAG2>
, and
<WORK_POOL_NAME>
with your specific details. For more information, you can refer to the Prefect documentation.