Skip to content

Commit a0c5adf

Browse files
committed
Style tweaks.
1 parent 219880c commit a0c5adf

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

README.Rmd

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ knitr::opts_chunk$set(
2121
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
2222
<!-- badges: end -->
2323

24-
The `multideploy` package provides tools for deploying file changes across multiple GitHub repositories. It's designed to help you manage standardized configurations, CI/CD workflows, and other common files that need to be synchronized across multiple repositories.
24+
The `{multideploy}` package provides tools for deploying file changes across multiple GitHub repositories. It's designed to help you manage standardized configurations, CI/CD workflows, and other common files that need to be synchronized across multiple repositories.
2525

2626
## Installation
2727

28-
You can install the development version of `multideploy` from [GitHub](https://github.comcoatless-rpkg/multideploy) with:
28+
You can install the development version of `{multideploy}` from [GitHub][multideploy-repo] with:
2929

3030
```{r}
3131
#| label: setup-readme
@@ -36,8 +36,8 @@ remotes::install_github("coatless-rpkg/multideploy")
3636

3737
## Authentication
3838

39-
`multideploy` uses the [`gh`](https://github.com/r-lib/gh) package for
40-
GitHub API authentication and querying. Before using `multideploy`, make sure
39+
`{multideploy}` uses the [`gh`][gh-repo] package for
40+
GitHub API authentication and querying. Before using `{multideploy}`, make sure
4141
you have a GitHub Personal Access Token (PAT) set up:
4242

4343
```{r}
@@ -48,7 +48,7 @@ Sys.setenv(GITHUB_PAT = askpass::askpass("What is your GitHub Personal Access To
4848
```
4949

5050
For regular use, it's recommended to add your PAT to the git credential system
51-
through the `gitcreds` package:
51+
through the [`{gitcreds}`][gitcreds-repo] package:
5252

5353
```{r}
5454
#| label: auth-credentials-readme
@@ -58,7 +58,8 @@ gitcreds::gitcreds_set()
5858

5959
## Quick Start Example
6060

61-
Here's an example showing how to deploy a standardized CI workflow file to multiple repositories using `multideploy`:
61+
Here's an example showing how to deploy a standardized CI workflow file to
62+
multiple repositories using `{multideploy}`:
6263

6364
```{r}
6465
#| label: quick-example-readme
@@ -86,7 +87,7 @@ print(results)
8687
8788
## Extended Overview
8889

89-
If you're looking for more detailed examples on how to use `multideploy`, we
90+
If you're looking for more detailed examples on how to use `{multideploy}`, we
9091
step through the additional features of the package within this section.
9192

9293
### Repository Selection
@@ -152,3 +153,7 @@ pr_create(repos, "branch-name", "PR Title", "PR Body", mapping, dry_run = TRUE)
152153
## License
153154

154155
AGPL (>= 3)
156+
157+
[multideploy-repo]: https://github.com/coatless-rpkg/multideploy
158+
[gh-repo]: https://github.com/r-lib/gh
159+
[gitcreds-repo]: https://github.com/r-lib/gitcreds

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
1111
<!-- badges: end -->
1212

13-
The `multideploy` package provides tools for deploying file changes
13+
The `{multideploy}` package provides tools for deploying file changes
1414
across multiple GitHub repositories. It’s designed to help you manage
1515
standardized configurations, CI/CD workflows, and other common files
1616
that need to be synchronized across multiple repositories.
1717

1818
## Installation
1919

20-
You can install the development version of `multideploy` from
21-
[GitHub](https://github.comcoatless-rpkg/multideploy) with:
20+
You can install the development version of `{multideploy}` from
21+
[GitHub](https://github.com/coatless-rpkg/multideploy) with:
2222

2323
``` r
2424
# install.packages("remotes")
@@ -27,17 +27,18 @@ remotes::install_github("coatless-rpkg/multideploy")
2727

2828
## Authentication
2929

30-
`multideploy` uses the [`gh`](https://github.com/r-lib/gh) package for
31-
GitHub API authentication and querying. Before using `multideploy`, make
32-
sure you have a GitHub Personal Access Token (PAT) set up:
30+
`{multideploy}` uses the [`gh`](https://github.com/r-lib/gh) package for
31+
GitHub API authentication and querying. Before using `{multideploy}`,
32+
make sure you have a GitHub Personal Access Token (PAT) set up:
3333

3434
``` r
3535
# Set GitHub PAT (or use .Renviron)
3636
Sys.setenv(GITHUB_PAT = askpass::askpass("What is your GitHub Personal Access Token (PAT)?"))
3737
```
3838

3939
For regular use, it’s recommended to add your PAT to the git credential
40-
system through the `gitcreds` package:
40+
system through the [`{gitcreds}`](https://github.com/r-lib/gitcreds)
41+
package:
4142

4243
``` r
4344
gitcreds::gitcreds_set()
@@ -46,7 +47,7 @@ gitcreds::gitcreds_set()
4647
## Quick Start Example
4748

4849
Here’s an example showing how to deploy a standardized CI workflow file
49-
to multiple repositories using `multideploy`:
50+
to multiple repositories using `{multideploy}`:
5051

5152
``` r
5253
library(multideploy)
@@ -73,7 +74,7 @@ print(results)
7374
## Extended Overview
7475

7576
If you’re looking for more detailed examples on how to use
76-
`multideploy`, we step through the additional features of the package
77+
`{multideploy}`, we step through the additional features of the package
7778
within this section.
7879

7980
### Repository Selection

0 commit comments

Comments
 (0)