Skip to content

Commit 9f9e67c

Browse files
committed
Add skeleton
1 parent 40d1a2d commit 9f9e67c

File tree

5 files changed

+713
-0
lines changed

5 files changed

+713
-0
lines changed

.Rbuildignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$
3+
^LICENSE\.md$
4+
^.devcontainer$
5+
^.github$

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata

DESCRIPTION

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Package: multideploy
2+
Title: Deploy File Changes Across Multiple GitHub Repositories
3+
Version: 0.1.0
4+
Authors@R: c(
5+
person("James Joseph", "Balamuta",
6+
email = "[email protected]",
7+
role = c("aut", "cre"),
8+
comment = c(ORCID = "0000-0003-2826-8458")
9+
)
10+
)
11+
Description: Provides functions to deploy file changes across multiple GitHub
12+
repositories using the GitHub API. Allows synchronizing common files,
13+
CI workflows, or configurations across many repositories with a single command.
14+
License: AGPL (>= 3)
15+
Encoding: UTF-8
16+
Roxygen: list(markdown = TRUE)
17+
RoxygenNote: 7.3.2
18+
Imports:
19+
gh (>= 1.3.0),
20+
base64enc,
21+
cli
22+
Suggests:
23+
testthat (>= 3.0.0),
24+
knitr,
25+
rmarkdown
26+
Config/testthat/edition: 3

0 commit comments

Comments
 (0)