diff --git a/.github/workflows/data-tests.yaml b/.github/workflows/data-tests.yaml index 21d26e0..e471898 100644 --- a/.github/workflows/data-tests.yaml +++ b/.github/workflows/data-tests.yaml @@ -55,6 +55,14 @@ jobs: source("R_scripts/CI_1_Generate_reports.R") shell: Rscript {0} + # Run R script to update progress map: + - name: Update Progress Map + id: update_progress_map + run: | + source("R_scripts/CI_2_progress_map.R") + shell: Rscript {0} + + # Commit and push all new files, where commits are assigned to GA bot: - name: Commit new files diff --git a/DESCRIPTION b/DESCRIPTION index beabe28..0d55fc5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -14,13 +14,15 @@ Authors@R: c( person(given = c("Albert", "Y."), family = "Kim", role = c("cre", "aut"), email = "albert.ys.kim@gmail.com", comment = c(ORCID = "0000-0001-7824-306X")), person(given = c("Valentine"), family = "Herrmann", role = c("aut"), email = "HerrmannV@si.edu", comment = c(ORCID = "0000-0002-4519-481X")), person(given = "Nidhi", family = "Vinod", role = "aut"), - person(given = "Cameron", family = "Dow", role = "aut", comment = c(ORCID = "0000-0002-8365-598X")) + person(given = "Cameron", family = "Dow", role = "aut", comment = c(ORCID = "0000-0002-8365-598X")), + person(given = "Rachel", family = "Hoffman", role = "aut", comment = c(ORCID = "0009-0006-3342-4362")) ) Depends: R (>= 4.0.0) Imports: here, data.table, - tidyverse + tidyverse, + sf URL: https://github.com/SCBI-ForestGEO/SCBImortality BugReports: https://github.com/SCBI-ForestGEO/SCBImortality/issues Config/testthat/edition: 3 diff --git a/R_scripts/X_progress_map.R b/R_scripts/CI_2_progress_map.R similarity index 100% rename from R_scripts/X_progress_map.R rename to R_scripts/CI_2_progress_map.R