gh-secrets-sync 0.1.4 → 0.1.5
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 +4 -0
- package/dist/cli.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
|
|
8
8
|
A CLI tool to batch sync GitHub Actions secrets across multiple repositories. Sync secrets from a central repository to target repositories using GitHub CI.
|
|
9
9
|
|
|
10
|
+
<p align='center'>
|
|
11
|
+
<img src='./assets/help.png' />
|
|
12
|
+
</p>
|
|
13
|
+
|
|
10
14
|
## Why?
|
|
11
15
|
|
|
12
16
|
Managing GitHub Actions secrets across multiple repositories can be tedious:
|
package/dist/cli.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gh-secrets-sync",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"description": "CLI tool to batch sync GitHub Actions secrets across multiple repositories.",
|
|
6
6
|
"author": "jinghaihan",
|
|
7
7
|
"license": "MIT",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"test": "vitest",
|
|
74
74
|
"lint": "eslint",
|
|
75
75
|
"deps": "taze major -I",
|
|
76
|
-
"release": "bumpp
|
|
76
|
+
"release": "bumpp",
|
|
77
77
|
"catalog": "pncat",
|
|
78
78
|
"bootstrap": "pnpm install"
|
|
79
79
|
}
|