gh-secrets-sync 0.1.4 → 0.1.6

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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/dist/cli.mjs +1 -1
  3. package/package.json +14 -14
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
@@ -10,7 +10,7 @@ import Spinner from 'yocto-spinner';
10
10
  import sodium from 'libsodium-wrappers';
11
11
 
12
12
  const name = "gh-secrets-sync";
13
- const version = "0.1.4";
13
+ const version = "0.1.6";
14
14
 
15
15
  const DEFAULT_SYNC_OPTIONS = {
16
16
  config: "./secrets.config.yaml",
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",
4
+ "version": "0.1.6",
5
5
  "description": "CLI tool to batch sync GitHub Actions secrets across multiple repositories.",
6
6
  "author": "jinghaihan",
7
7
  "license": "MIT",
@@ -39,26 +39,26 @@
39
39
  "@octokit/core": "^7.0.6",
40
40
  "ansis": "^4.2.0",
41
41
  "cac": "^6.7.14",
42
- "execa": "^9.6.0",
43
- "libsodium-wrappers": "^0.7.15",
42
+ "execa": "^9.6.1",
43
+ "libsodium-wrappers": "0.7.15",
44
44
  "pathe": "^2.0.3",
45
- "yaml": "^2.8.1",
45
+ "yaml": "^2.8.2",
46
46
  "yocto-spinner": "^1.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@antfu/eslint-config": "^6.2.0",
49
+ "@antfu/eslint-config": "^6.7.3",
50
50
  "@types/libsodium-wrappers": "^0.7.14",
51
- "@types/node": "^24.10.0",
52
- "bumpp": "^10.3.1",
53
- "eslint": "^9.39.1",
54
- "lint-staged": "^16.2.6",
55
- "pncat": "^0.7.4",
51
+ "@types/node": "^25.0.3",
52
+ "bumpp": "^10.3.2",
53
+ "eslint": "^9.39.2",
54
+ "lint-staged": "^16.2.7",
55
+ "pncat": "^0.7.7",
56
56
  "simple-git-hooks": "^2.13.1",
57
- "taze": "^19.9.0",
58
- "tsx": "^4.20.6",
57
+ "taze": "^19.9.2",
58
+ "tsx": "^4.21.0",
59
59
  "typescript": "^5.9.3",
60
60
  "unbuild": "^3.6.1",
61
- "vitest": "^4.0.8"
61
+ "vitest": "^4.0.16"
62
62
  },
63
63
  "simple-git-hooks": {
64
64
  "pre-commit": "pnpm lint-staged"
@@ -73,7 +73,7 @@
73
73
  "test": "vitest",
74
74
  "lint": "eslint",
75
75
  "deps": "taze major -I",
76
- "release": "bumpp && pnpm publish --no-git-checks",
76
+ "release": "bumpp",
77
77
  "catalog": "pncat",
78
78
  "bootstrap": "pnpm install"
79
79
  }