diff --git a/.github/workflows/build-and-run-model.yaml b/.github/workflows/build-and-run-model.yaml index 1d6e023da..0aaf195e5 100644 --- a/.github/workflows/build-and-run-model.yaml +++ b/.github/workflows/build-and-run-model.yaml @@ -18,12 +18,13 @@ on: type: choice description: Run type or purpose options: - - junk - - rejected - - test - baseline - candidate + - comps - final + - junk + - rejected + - test default: test required: true run_note: diff --git a/.github/workflows/tag-model-runs.yaml b/.github/workflows/tag-model-runs.yaml index 3be8e9c03..17ccacc5c 100644 --- a/.github/workflows/tag-model-runs.yaml +++ b/.github/workflows/tag-model-runs.yaml @@ -13,12 +13,13 @@ on: type: choice description: New/replacement run type to apply to specified runs options: - - junk - - rejected - - test - baseline - candidate + - comps - final + - junk + - rejected + - test default: test required: true run_ids: diff --git a/R/helpers.R b/R/helpers.R index 18bc6de61..f1eab792a 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -111,7 +111,8 @@ model_tag_run <- function(run_id, year, run_type) { paths <- model_file_dict(run_id, year) possible_run_types <- c( "junk", "rejected", "test", - "baseline", "candidate", "final" + "baseline", "candidate", "final", + "comps" ) if (!run_type %in% possible_run_types) { stop( diff --git a/R/setup.R b/R/setup.R index ede20373f..0ab58a1f9 100644 --- a/R/setup.R +++ b/R/setup.R @@ -100,7 +100,8 @@ run_type <- as.character( # Must be one of the dedicated run types possible_run_types <- c( "junk", "rejected", "test", - "baseline", "candidate", "final" + "baseline", "candidate", "final", + "comps" ) if (!run_type %in% possible_run_types) { stop( diff --git a/params.yaml b/params.yaml index 41f14d566..9bec5ac69 100644 --- a/params.yaml +++ b/params.yaml @@ -10,7 +10,7 @@ # Run Control ------------------------------------------------------------------ # Model tag used to identify the purpose of the run. Must be one of: -# "junk", "rejected", "test", "baseline", "candidate", or "final" +# "junk", "rejected", "test", "baseline", "candidate", "final", or "comps" run_type: "test" # Note included with each run. Use this to summarize what changed about the run