-
Notifications
You must be signed in to change notification settings - Fork 313
Open
Labels
K-bug(Kind) A bug report (for issues) and/or bugfix (for PRs).(Kind) A bug report (for issues) and/or bugfix (for PRs).S05-in-progress(State) A task that is in progress.(State) A task that is in progress.
Description
Lines 7807 to 7830 in ab92fca
| output { | |
| Boolean is_compressed = matches(basename(json), "\\.(gz|zip|zstd)") | |
| Boolean is_json = matches(basename(json), "_R1") | |
| } | |
| } | |
| ``` | |
| </summary> | |
| <p> | |
| Example input: | |
| ```json | |
| { | |
| "test_matches.json": "person.json" | |
| } | |
| ``` | |
| Example output: | |
| ```json | |
| { | |
| "test_matches.is_compressed": false, | |
| "test_matches.is_read1": false | |
| } | |
| ``` |
Here the output section has is_json but the correct output has is_read1. And the call actually made looks like it is answering the is_read1 question.
Metadata
Metadata
Assignees
Labels
K-bug(Kind) A bug report (for issues) and/or bugfix (for PRs).(Kind) A bug report (for issues) and/or bugfix (for PRs).S05-in-progress(State) A task that is in progress.(State) A task that is in progress.