Question - if i have a scheduled flow that runs ev...
# ask-community
t
Question - if i have a scheduled flow that runs every day - and i want: • the flow-run name to be altered based on the date in which it is run (e.g. “My-Cool-Run-For-2023-05-03” ) • more generally - the flow to receive the date in which it is run as a parameter (so that it could also always be easily invoked for any arbitrary date) is there a way to do it? use jinja on the parameter dictionary of the deployment or something…?
1
j
You could check out the runtime context.
t
@Jeff Hale in the end i solved it by just providing a default value for the param in the function definition and embedding the param in the flow name. I didn’t realize i could actually run code to yield the default value for an argument
👍 1