Add YAML file import support to task arguments dialog#1894
Open
Mbeaulne wants to merge 1 commit into03-04-bulk_argument_upload_-_jsonfrom
Open
Add YAML file import support to task arguments dialog#1894Mbeaulne wants to merge 1 commit into03-04-bulk_argument_upload_-_jsonfrom
Mbeaulne wants to merge 1 commit into03-04-bulk_argument_upload_-_jsonfrom
Conversation
🎩 To tophat this PR:You can add the following URL parameter to your browser to tophat this PR: |
8 tasks
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Mar 4, 2026
4 tasks
1cc2c3f to
18c27ad
Compare
64c9574 to
f1cd6c2
Compare
18c27ad to
f854b08
Compare
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Added YAML file import support to the SubmitTaskArgumentsDialog component. The dialog now accepts
.yamland.ymlfiles in addition to existing CSV and JSON formats. YAML files are parsed using thejs-yamllibrary and converted to JSON format before processing through the existing argument mapping logic. Added error handling for invalid YAML syntax with appropriate user notifications.Related Issue and Pull requests
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
.yamland.ymlfilesAdditional Comments
The implementation reuses the existing JSON argument mapping logic by converting YAML to JSON first, ensuring consistency with the current data processing pipeline.