Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@

## Bug fixes

- Read the task commit from `task_info.yaml` in `get_task_info`, instead of always writing a null (PR #943).

- Fix metric direction (`maximize`/`minimize`) handling in `generate_qc` and `render_report` components of the `process_task_results` workflow (PR #936).

- Fix bug in metric maximize handling and add raw scores table to the benchmark report (PR #937).
Expand Down
2 changes: 1 addition & 1 deletion src/reporting/get_task_info/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cat("Using timestamp:", timestamp, "\n")
cat("\n>>> Creating JSON list...\n")
task_info_json <- list(
name = jsonlite::unbox(sub("^task_", "", task_info_yaml$name)), # Remove "task_" prefix
commit = jsonlite::unbox(NA_character_), # TODO: Add when available in task_info.yaml
commit = jsonlite::unbox(task_info_yaml$commit %||% NA_character_),
label = task_info_yaml$label %||%
# Create label from task name if missing
(
Expand Down
Loading