Slackbot
04/02/2026, 4:36 PMMarvin
04/02/2026, 4:36 PMMarvin
04/02/2026, 4:39 PMexpect list (glob-style). For example:
expect:
- "prefect.flow-run.*"
That will match any flow-run state event.
- There isn’t a built-in alias or group for “all failures/terminal states,” so if you only want specific failure-like states (e.g., Failed, Crashed, TimedOut) you’ll typically list them explicitly, like you’re doing:
expect:
- "prefect.flow-run.Failed"
- "prefect.flow-run.Crashed"
- "prefect.flow-run.TimedOut"
If your goal is different (e.g., “any terminal state except Completed” or “anything that isn’t Running/Completed”), let me know and I can suggest a concise pattern setup.