Skip to content

Commit

Permalink
add language, domain expertise to editors tables for #7
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Mar 19, 2024
1 parent de8a30e commit d7bd4df
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashboard
Title: What the Package Does (One Line, Title Case)
Version: 0.0.7.004
Version: 0.0.7.005
Authors@R:
person(given = "First",
family = "Last",
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "dashboard: What the Package Does (One Line, Title Case)",
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
"license": "https://spdx.org/licenses/MIT",
"version": "0.0.7.004",
"version": "0.0.7.005",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
10 changes: 8 additions & 2 deletions quarto/editors.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ library (dplyr)
library (viridis)
ed_dat <- editor_status (quiet = TRUE)
ed_status <- ed_dat$status
ed_status <- ed_status [ed_status$editor != "haozhu233", ]
ed_timeline <- ed_dat$timeline
```

Expand Down Expand Up @@ -52,10 +51,17 @@ cat (paste0 (
```


```{r editor-vacation-status, echo = FALSE}
```{r editor-add_airtable-data, echo = FALSE}
edvac <- dashboard::editor_vacation_status ()
editors_on_vacation <- edvac$github [which (edvac$away)]
ed_status$status [ed_status$editor %in% editors_on_vacation] <- "ON LEAVE"
ed_status <- dashboard::add_editor_airtable_data (ed_status)
ed_status <- dplyr::filter (ed_status, editor != "haozhu233") |>
dplyr::relocate (other_langs, .before = domain_expertise) |>
dplyr::rename (
"Languages" = other_langs,
"Expertise" = domain_expertise
)
```

### General Editors
Expand Down

0 comments on commit d7bd4df

Please sign in to comment.