Skip to content

Commit

Permalink
Update tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed May 20, 2024
1 parent 0039361 commit b900502
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
8 changes: 4 additions & 4 deletions doc/src/guide/tutorial/group-workflow2.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ value_file = "value.json"
[[action]]
name = "process_point"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "point"]]
[[action.group.include]]
condition = ["/type", "==", "point"]

[[action]]
name = "process_letter"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "letter"]]
[[action.group.include]]
condition = ["/type", "==", "letter"]
7 changes: 4 additions & 3 deletions doc/src/guide/tutorial/group-workflow3.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ value_file = "value.json"
name = "process_point"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "point"]]
sort_by = ["/x"]
[[action.group.include]]
condition = ["/type", "==", "point"]

[[action]]
name = "process_letter"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "letter"]]
[[action.group.include]]
condition = ["/type", "==", "letter"]
7 changes: 4 additions & 3 deletions doc/src/guide/tutorial/group-workflow4.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ value_file = "value.json"
name = "process_point"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "point"]]
sort_by = ["/x"]
split_by_sort_key = true
[[action.group.include]]
condition = ["/type", "==", "point"]

[[action]]
name = "process_letter"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "letter"]]
[[action.group.include]]
condition = ["/type", "==", "letter"]
7 changes: 4 additions & 3 deletions doc/src/guide/tutorial/group-workflow5.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ value_file = "value.json"
name = "process_point"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "point"]]
sort_by = ["/x"]
maximum_size = 4
[[action.group.include]]
condition = ["/type", "==", "point"]

[[action]]
name = "process_letter"
command = "echo {directory}"
[action.group]
include = [["/type", "==", "letter"]]
[[action.group.include]]
condition = ["/type", "==", "letter"]

0 comments on commit b900502

Please sign in to comment.