Skip to content

Commit 9943f84

Browse files
committed
Merge branch 'main' of https://github.com/dajmcdon/epiprocess into km/growth_rate
2 parents 7ddcbbe + d16d889 commit 9943f84

File tree

139 files changed

+959
-11172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+959
-11172
lines changed

.Rbuildignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@
55
^docs$
66
^_pkgdown.yml
77
^index\.md$
8-
^data-raw$
8+
^data-raw$
9+
^_pkgdown\.yml$
10+
^pkgdown$

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@dajmcdon
1+
@dajmcdon @brookslogan

.github/workflows/pkgdown.yaml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
2+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
on:
4+
push:
5+
branches: [main, master]
6+
release:
7+
types: [published]
8+
workflow_dispatch:
9+
10+
name: pkgdown
11+
12+
jobs:
13+
pkgdown:
14+
runs-on: ubuntu-latest
15+
env:
16+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- uses: r-lib/actions/setup-pandoc@v1
21+
22+
- uses: r-lib/actions/setup-r@v1
23+
with:
24+
use-public-rspm: true
25+
26+
- uses: r-lib/actions/setup-r-dependencies@v1
27+
with:
28+
extra-packages: pkgdown
29+
needs: website
30+
31+
- name: Deploy package
32+
run: |
33+
git config --local user.name "$GITHUB_ACTOR"
34+
git config --local user.email "[email protected]"
35+
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
.Ruserdata
55
*.Rproj
66
inst/doc
7+
docs

DESCRIPTION

+2-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Imports:
3737
Suggests:
3838
covidcast,
3939
delphi.epidata,
40-
gginnards,
4140
ggplot2,
4241
knitr,
4342
outbreaks,
@@ -52,7 +51,7 @@ Config/testthat/edition: 3
5251
Encoding: UTF-8
5352
LazyData: true
5453
Roxygen: list(markdown = TRUE)
55-
RoxygenNote: 7.1.2
54+
RoxygenNote: 7.2.0
5655
Depends:
5756
R (>= 2.10)
58-
57+
URL: https://cmu-delphi.github.io/epiprocess/

0 commit comments

Comments
 (0)