-
Notifications
You must be signed in to change notification settings - Fork 16
feat(config): Switch work order files from JSON to YAML #117
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| workInstructionName: "Pick and Place" | ||
| steps: | ||
| - processId: "place_on_conveyor" | ||
| outputItems: | ||
| - guid: "productA" | ||
| metadata: | ||
| quantity: 1 | ||
| state: "state_1" | ||
| - processId: "pick_from_conveyor" | ||
| inputItems: | ||
| - guid: "productA" | ||
| metadata: | ||
| quantity: 1 | ||
| state: "state_1" | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,9 @@ | ||||||||||
| workInstructionName: "Pick from conveyor" | ||||||||||
| steps: | ||||||||||
| - processId: "pick_from_conveyor" | ||||||||||
| inputItems: | ||||||||||
| - guid: "productA" | ||||||||||
| metadata: | ||||||||||
| quantity: 1 | ||||||||||
| state: "state_1" | ||||||||||
|
|
||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
EOF lines cannot have white spaces |
||||||||||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,9 @@ | ||||||||||
| workInstructionName: "Place on conveyor" | ||||||||||
| steps: | ||||||||||
| - processId: "place_on_conveyor" | ||||||||||
| outputItems: | ||||||||||
| - guid: "productA" | ||||||||||
| metadata: | ||||||||||
| quantity: 1 | ||||||||||
| state: "state_1" | ||||||||||
|
|
||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
EOF lines cannot have white spaces |
||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,6 +67,9 @@ | |
| <test_depend>ament_index_cpp</test_depend> | ||
| <test_depend>rcpputils</test_depend> | ||
|
|
||
| <!-- json2yaml edit --> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove stale comment |
||
| <exec_depend>python3-yaml</exec_depend> | ||
|
|
||
| <export> | ||
| <build_type>ament_cmake</build_type> | ||
| </export> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EOF lines cannot have white spaces