@theholocron/holocron-plugin-github 2.0.0-alpha.35 → 2.0.0-alpha.36

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 (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -13,8 +13,10 @@ against the GitHub REST API:
13
13
 
14
14
  ## Install
15
15
 
16
+ <!-- prettier-ignore -->
16
17
  ```bash
17
18
  pnpm add -D @theholocron/holocron-plugin-github@alpha
19
+
18
20
  ```
19
21
 
20
22
  ## Auth
@@ -33,17 +35,19 @@ toggles, etc.) — silent fallback would surface as mysterious 403s.
33
35
 
34
36
  ## Config
35
37
 
38
+ <!-- prettier-ignore -->
36
39
  ```jsonc
37
40
  // holocron.config.json
38
41
  {
39
- "providers": {
40
- "source": "github",
41
- "ci": "github",
42
- "secrets": "github",
43
- "environments": "github",
44
- "issues": ["github", { "labels": { "inProgress": "status:in-progress", "inReview": "status:in-review" } }],
45
- },
42
+ "providers": {
43
+ "source": "github",
44
+ "ci": "github",
45
+ "secrets": "github",
46
+ "environments": "github",
47
+ "issues": ["github", { "labels": { "inProgress": "status:in-progress", "inReview": "status:in-review" } }],
48
+ },
46
49
  }
50
+
47
51
  ```
48
52
 
49
53
  ## Status
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-github",
3
- "version": "2.0.0-alpha.35",
3
+ "version": "2.0.0-alpha.36",
4
4
  "description": "Holocron plugin for GitHub. Implements source, ci, secrets, environments, and issues capabilities against the GitHub REST API.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-github#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",
@@ -21,7 +21,7 @@
21
21
  }
22
22
  },
23
23
  "peerDependencies": {
24
- "@theholocron/cli": "2.0.0-alpha.35"
24
+ "@theholocron/cli": "2.0.0-alpha.36"
25
25
  },
26
26
  "dependencies": {
27
27
  "libsodium-wrappers": "^0.7.15"
@@ -41,7 +41,7 @@
41
41
  "tsx": "^4.22.4",
42
42
  "typescript": "^5.9.3",
43
43
  "vitest": "^4.1.10",
44
- "@theholocron/cli": "2.0.0-alpha.35"
44
+ "@theholocron/cli": "2.0.0-alpha.36"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"