Is there a way to schedule all actions in a schema? Note that I specifically don't want to use tags.
Scenario:
- I have configured Dataform such that all my assertions go to the `assertions` schema (using the `assertionSchema` in `dataform.json`).
- I want to schedule a workflow that runs the assertions each day: it would be good if I could run everything in the `assertions` schema, without having to explicitly list them out
- I can't use tags because I have defined a lot of my assertions as part of a table/view config, and so these assertions can't be tagged. It would be a pain to re-write them as individual assertions
- I use Terraform's `google_dataform_repository_workflow_config` to define the workflow (link), and I was hoping I could do something like the following (which doesn't work):
....
invocation_config {
included_targets {
database = "my-db"
schema = "assertions"
name = "*"
}
....
- But the REST API makes me think that the name has to be an action, not a wildcard or empty)
Any ideas? I'd really like to run my assertions each day in isolation.