@tomsd/github-repo-js 0.2.1

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 ADDED
@@ -0,0 +1,16 @@
1
+ # github-repo-js
2
+
3
+ with environment variable
4
+ ``` sh
5
+ docker run --rm -it -e GITHUB_TOKEN=YOUR_TOKEN ghcr.io/tomsdoo/github-repo-js:main
6
+ ```
7
+
8
+ with .env file
9
+ ``` sh
10
+ docker run --rm -it --env-file .env ghcr.io/tomsdoo/github-repo-js:main
11
+ ```
12
+
13
+ with script file
14
+ ``` sh
15
+ docker run -it --env-file .env -v ./scripts:/scripts ghcr.io/tomsdoo/github-repo-js:main work.js
16
+ ```