Open
Description
Describe the current behavior
Current when defining a trigger via prefect yaml for a particular deployment the description for the trigger isn't passed to the created automation
For example This trigger definition creates an automation with the name "testing_trigger_description" but passing a description to the trigger still results in None being displayed for the automation triggers description
triggers:
- type: event
name: testing_trigger_description
description: "some description"
enabled: true
match:
prefect.resource.id: prefect.flow_run.*
expect:
- prefect.flow_run.Completed
Resulting Automation in the UI:
![Screenshot 2025-01-08 at 3 41 00 PM](https://private-user-images.githubusercontent.com/76698667/401330807-d58d36f9-2c77-49df-a017-6df328c71748.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNDgzOTcsIm5iZiI6MTczOTI0ODA5NywicGF0aCI6Ii83NjY5ODY2Ny80MDEzMzA4MDctZDU4ZDM2ZjktMmM3Ny00OWRmLWEwMTctNmRmMzI4YzcxNzQ4LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDA0MjgxN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPThiOTFjZDgxMzA0NTIyMjVkYzMxYWQ5ZTA4YjVmM2IzNWRlMGRlMWM4OTU3ZGM2ZmQ4NTg1NWQwMzdiYmZhMTYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.rjjtxmw1dPR5DthSEjQfBoXTAUh84BS5_2cDFsKjaEg)
Describe the proposed behavior
Descriptions passed to a trigger definition via prefect yaml should be reflected in the description for the resulting automation trigger that gets created.
Example Use
No response
Additional context
No response