Skip to content

Commit b13566f

Browse files
authored
Merge pull request #854 from cmu-delphi/release/v3.2.5
Release v3.2.5
2 parents fd6030c + 9ada256 commit b13566f

15 files changed

+915
-1695
lines changed

.github/workflows/blog.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 3
20-
- uses: mamba-org/provision-with-micromamba@v15
20+
- uses: mamba-org/provision-with-micromamba@v16
2121
with:
2222
environment-file: environment.yml
2323
micromamba-version: latest
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
Rscript ./dependencies.R
3939
- name: Restore Blogdown Cache
40-
uses: actions/cache@v3.0.2
40+
uses: actions/cache@v3.3.1
4141
with:
4242
path: |
4343
./blogdown
@@ -46,6 +46,8 @@ jobs:
4646
${{ runner.os }}-blogdown2-${{ hashFiles('environment.yml') }}-
4747
${{ runner.os }}-blogdown2-
4848
- name: Build site
49+
env:
50+
API_KEY: ${{ secrets.DELPHI_GITHUB_ACTIONS_EPIDATA_API_KEY }}
4951
run: |
5052
npm run build:blog
5153
- uses: actions/upload-artifact@v3

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-node@v3
1515
with:
1616
node-version: 16
17-
- uses: actions/cache@v3.0.2
17+
- uses: actions/cache@v3.3.1
1818
with:
1919
path: ~/.npm
2020
key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }}

.github/workflows/create_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
base: main
3333
title: Release ${{ steps.version.outputs.next_tag }}
3434
labels: chore
35-
reviewers: krivard
36-
# assignees:
35+
# reviewers:
36+
assignees: melange396
3737
body: |
3838
Releasing ${{ steps.version.outputs.next_tag }}.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Dependabot auto-assign reviewer
2+
on: pull_request
3+
4+
permissions:
5+
pull-requests: write
6+
7+
jobs:
8+
dependabot:
9+
runs-on: ubuntu-latest
10+
env:
11+
GH_TOKEN: ${{ secrets.CMU_DELPHI_AUTOMATION_MACHINE_DEPENDABOT_PAT }}
12+
if: ${{ github.actor == 'dependabot[bot]' }}
13+
steps:
14+
- name: Assign team to PR
15+
run: gh pr edit "$PR_URL" --add-reviewer "cmu-delphi/code-reviewers"
16+
env:
17+
PR_URL: ${{github.event.pull_request.html_url}}

.github/workflows/release_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
node-version: 16
4949
- name: Cache Node.js modules
50-
uses: actions/cache@v3.0.2
50+
uses: actions/cache@v3.3.1
5151
with:
5252
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
5353
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}

content/about/publications/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ papers:
106106
- title: "A Proposal for Standardized Evaluation of Epidemiological Models"
107107
image: evaluation.jpg
108108
authors: Rosenfeld, Grefenstette, Burke
109-
link: https://www.cs.cmu.edu/~roni/standardized-evaluation-of-epi-models-rev-09nov2012.pdf
109+
link: https://kilthub.cmu.edu/articles/report/A_Proposal_for_Standardized_Evaluation_of_Epidemiological_Models/21708314
110110
journal: White paper
111111
year: 2012
112112
---

content/blog/2020-08-26-fb-survey.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ output:
4848
---
4949

5050
```{r, echo=FALSE}
51-
options(covidcast.auth = "9328d11cfe46d") # Minh's key
51+
options(covidcast.auth = Sys.getenv("API_KEY"))
5252
```
5353

5454
Since April 2020, in collaboration with Facebook,

content/blog/2020-10-06-survey-wave-4.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ output:
3131
toc: true
3232
---
3333
```{r, echo=FALSE}
34-
options(covidcast.auth = "9328d11cfe46d") # Minh's key
34+
options(covidcast.auth = Sys.getenv("API_KEY"))
3535
```
3636
Beginning in early April 2020, the `r blogdown::shortcode_html("reflink", "/", "Delphi group")` has
3737
conducted a major survey to track COVID-19 across the United States. With the

content/blog/2020-10-14-dv-signal.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ library(covidcast)
7575
library(dplyr)
7676
library(ggplot2)
7777
library(gridExtra)
78-
options(covidcast.auth = "9328d11cfe46d") # Minh's key
78+
options(covidcast.auth = Sys.getenv("API_KEY"))
7979
8080
# Fetch DV % CLI signal and USAFacts confirmed case incidence proportion at
8181
# the state level

content/blog/2020-12-10-masks-public.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ output:
2222
---
2323

2424
```{r, echo=FALSE}
25-
options(covidcast.auth = "9328d11cfe46d") # Minh's key
25+
options(covidcast.auth = Sys.getenv("API_KEY"))
2626
```
2727

2828
As COVID cases and deaths continue to rise in the United States, we are

0 commit comments

Comments
 (0)