Skip to content

Commit 47db463

Browse files
committed
Add other locations
1 parent d65ca3c commit 47db463

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build-and-run-model.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ on:
1818
type: choice
1919
description: Run type or purpose
2020
options:
21-
- junk
22-
- rejected
23-
- test
2421
- baseline
2522
- candidate
23+
- comps
2624
- final
25+
- junk
26+
- rejected
27+
- test
2728
default: test
2829
required: true
2930
run_note:

R/helpers.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ model_tag_run <- function(run_id, year, run_type) {
111111
paths <- model_file_dict(run_id, year)
112112
possible_run_types <- c(
113113
"junk", "rejected", "test",
114-
"baseline", "candidate", "final"
114+
"baseline", "candidate", "final",
115+
"comps"
115116
)
116117
if (!run_type %in% possible_run_types) {
117118
stop(

R/setup.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ run_type <- as.character(
100100
# Must be one of the dedicated run types
101101
possible_run_types <- c(
102102
"junk", "rejected", "test",
103-
"baseline", "candidate", "final"
103+
"baseline", "candidate", "final",
104+
"comps"
104105
)
105106
if (!run_type %in% possible_run_types) {
106107
stop(

params.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Run Control ------------------------------------------------------------------
1111

1212
# Model tag used to identify the purpose of the run. Must be one of:
13-
# "junk", "rejected", "test", "baseline", "candidate", or "final"
13+
# "junk", "rejected", "test", "baseline", "candidate", "final", or "comps"
1414
run_type: "test"
1515

1616
# Note included with each run. Use this to summarize what changed about the run

0 commit comments

Comments
 (0)