@tomsd/github-repo-js 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.d.ts +443 -5094
- package/dist/index.iife.js +1 -0
- package/dist/index.mjs +1 -0
- package/dist/modules/base.d.ts +31 -0
- package/dist/modules/blob.d.ts +68 -0
- package/dist/modules/blobs.d.ts +67 -0
- package/dist/modules/github-classes.d.ts +4647 -0
- package/dist/modules/issue-comments.d.ts +101 -0
- package/dist/modules/issue.d.ts +330 -0
- package/dist/modules/my-issues.d.ts +289 -0
- package/dist/modules/organization-audit-log.d.ts +22 -0
- package/dist/modules/organization-repositories.d.ts +591 -0
- package/dist/modules/pull-commits.d.ts +177 -0
- package/dist/modules/pull-reviewers.d.ts +41 -0
- package/dist/modules/reference-get.d.ts +67 -0
- package/dist/modules/reference.d.ts +73 -0
- package/dist/modules/repository-artifact.d.ts +118 -0
- package/dist/modules/repository-artifacts.d.ts +118 -0
- package/dist/modules/repository-branch.d.ts +82 -0
- package/dist/modules/repository-branches.d.ts +66 -0
- package/dist/modules/repository-commits.d.ts +211 -0
- package/dist/modules/repository-issues.d.ts +317 -0
- package/dist/modules/repository-latest-release.d.ts +21 -0
- package/dist/modules/repository-pull.d.ts +458 -0
- package/dist/modules/repository-pulls.d.ts +369 -0
- package/dist/modules/repository-references.d.ts +82 -0
- package/dist/modules/repository-releases.d.ts +171 -0
- package/dist/modules/repository-runs.d.ts +206 -0
- package/dist/modules/repository-trees.d.ts +99 -0
- package/dist/modules/repository.d.ts +2267 -0
- package/dist/modules/tree.d.ts +82 -0
- package/dist/modules/user-organizations.d.ts +84 -0
- package/dist/modules/user-repositories.d.ts +597 -0
- package/dist/modules/user.d.ts +500 -0
- package/dist/repl.mjs +4 -0
- package/dist/utils/index.d.ts +6 -0
- package/package.json +6 -6
- package/dist/index.global.js +0 -1
- package/dist/index.js +0 -1
- package/dist/repl.js +0 -4
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
with environment variable
|
|
4
4
|
``` sh
|
|
5
|
-
docker run --rm -it -e GITHUB_TOKEN=YOUR_TOKEN ghcr.io/tomsdoo/github-repo-js:
|
|
5
|
+
docker run --rm -it -e GITHUB_TOKEN=YOUR_TOKEN ghcr.io/tomsdoo/github-repo-js:latest
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
with .env file
|
|
9
9
|
``` sh
|
|
10
|
-
docker run --rm -it --env-file .env ghcr.io/tomsdoo/github-repo-js:
|
|
10
|
+
docker run --rm -it --env-file .env ghcr.io/tomsdoo/github-repo-js:latest
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
with script file
|
|
14
14
|
``` sh
|
|
15
|
-
docker run -it --env-file .env -v ./scripts:/scripts ghcr.io/tomsdoo/github-repo-js:
|
|
15
|
+
docker run -it --env-file .env -v ./scripts:/scripts ghcr.io/tomsdoo/github-repo-js:latest work.js
|
|
16
16
|
```
|