|
1 | | -# `@s0/ghcommit` |
| 1 | +# `@changesets/ghcommit` |
2 | 2 |
|
3 | | -[](https://www.npmjs.com/package/@s0/ghcommit) |
| 3 | +[](https://www.npmjs.com/package/@changesets/ghcommit) |
4 | 4 |
|
5 | 5 | NPM / TypeScript package to commit changes GitHub repositories using the GraphQL API. |
6 | 6 |
|
@@ -32,7 +32,7 @@ NPM / TypeScript package to commit changes GitHub repositories using the GraphQL |
32 | 32 | Install using your favourite package manager: |
33 | 33 |
|
34 | 34 | ``` |
35 | | -pnpm install @s0/ghcommit |
| 35 | +pnpm install @changesets/ghcommit |
36 | 36 | ``` |
37 | 37 |
|
38 | 38 | ### Usage in github actions |
@@ -103,7 +103,7 @@ Example: |
103 | 103 |
|
104 | 104 | ```ts |
105 | 105 | import { context, getOctokit } from "@actions/github"; |
106 | | -import { commitChangesFromRepo } from "@s0/ghcommit/git"; |
| 106 | +import { commitChangesFromRepo } from "@changesets/ghcommit/git"; |
107 | 107 |
|
108 | 108 | const octokit = getOctokit(process.env.GITHUB_TOKEN); |
109 | 109 |
|
@@ -179,7 +179,7 @@ Example: |
179 | 179 |
|
180 | 180 | ```ts |
181 | 181 | import { context, getOctokit } from "@actions/github"; |
182 | | -import { commitFilesFromDirectory } from "@s0/ghcommit/fs"; |
| 182 | +import { commitFilesFromDirectory } from "@changesets/ghcommit/fs"; |
183 | 183 |
|
184 | 184 | const octokit = getOctokit(process.env.GITHUB_TOKEN); |
185 | 185 |
|
@@ -245,7 +245,7 @@ Example: |
245 | 245 |
|
246 | 246 | ```ts |
247 | 247 | import { context, getOctokit } from "@actions/github"; |
248 | | -import { commitFilesFromBuffers } from "@s0/ghcommit/node"; |
| 248 | +import { commitFilesFromBuffers } from "@changesets/ghcommit/node"; |
249 | 249 |
|
250 | 250 | const octokit = getOctokit(process.env.GITHUB_TOKEN); |
251 | 251 |
|
|
0 commit comments