Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix list on mkdocs #108

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/arcaflow/workflows/flow-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,10 @@ the disabled output, which will output either the success output or the disabled
The oneof tag is a method of creating a schema `one_of_string` type from values present in the workflow.

The syntax of `!oneof` is:

- Following the tag `!oneof`, create a new YAML section (map) by starting an indented new line. That section should contain two properties:
- discriminator: A string that specifies what the oneof discriminator should be. The discriminator specifies which option was emitted.
- options: A YAML section (map) that contains all options. The keys are the discriminator values, and the values should be valid expressions.
- discriminator: A string that specifies what the oneof discriminator should be. The discriminator specifies which option was emitted.
- options: A YAML section (map) that contains all options. The keys are the discriminator values, and the values should be valid expressions.

Example:
```yaml title="workflow.yaml"
Expand Down