Skip to content

Commit

Permalink
Fix latest-start-date error being reported as turing-project-code
Browse files Browse the repository at this point in the history
  • Loading branch information
yongrenjie committed Jun 26, 2023
1 parent b81169c commit a2eaa53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/github.ml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ let metadata_of_yaml issue (pairs : (string * Yaml.value) list) =
let* earliest_start_date = read_date_field issue pairs "earliest-start-date" in
let* latest_start_date =
read_date_field issue pairs "latest-start-date"
>>= enforce_non_null_field issue "turing-project-code"
>>= enforce_non_null_field issue "latest-start-date"
in
let* latest_end_date = read_date_field issue pairs "latest-end-date" in
let* max_fte_percent_opt = read_nonneg_float_field issue pairs "max-FTE-percent" in
Expand Down

0 comments on commit a2eaa53

Please sign in to comment.