@intentius/chant-lexicon-github 0.1.14 → 0.1.15

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "8a23dd705158f122ea2af410bfd9a1ea907f6eadf9e7ceece9a72897d46eab15",
4
+ "manifest.json": "3b35e83ee952fe061c29df00caa0edb96987d17070e7ac14ad2612e8aee342e2",
5
5
  "meta.json": "798c5f5f37b0174756d2451299acfdc95c014f11d06d32b9153bbdfa9f3a580c",
6
- "types/index.d.ts": "fd1f8388448a8ad7744d9190382984eaae127de7f58ce8c92204b759a00fe316",
6
+ "types/index.d.ts": "39c0791f0e58025bcef82e0f7a92240508f899fc2771d5dd51b2369b4d330f13",
7
7
  "rules/deprecated-action-version.ts": "d41e6e532ab7f623af1bee4ac5279fcb2baada7defa1c5d022a5bc71983e8797",
8
8
  "rules/detect-secrets.ts": "5829832eb7b43993424971041ed386b196850183bffd34bddd6439f99061e4ae",
9
9
  "rules/extract-inline-structs.ts": "8f8147c200de8ffd0620dfdcca2e2cea76a520303ce431479ebecad6aa26aab5",
@@ -37,5 +37,5 @@
37
37
  "skills/chant-github-patterns.md": "bb3abef289a8fdfcf07d6bb2d7289dcb2f38bc0cb0321ea320b78b45a6f548c0",
38
38
  "skills/chant-github-security.md": "aab111cb0871cad30281ce48d7da23663689619351029219e2be019a1a61e394"
39
39
  },
40
- "composite": "57e05c2e359317313af8962ac0eee72285289d9c64217673c9e6218faeca8155"
40
+ "composite": "ed3e45b2966db957f0aa0ed69253712b9a76b5c9c4f065047f69b3101d5eb770"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "GitHub",
6
6
  "intrinsics": [
@@ -98,6 +98,7 @@ export declare class Permissions {
98
98
  "artifact-metadata"?: "read" | "write" | "none";
99
99
  attestations?: "read" | "write" | "none";
100
100
  checks?: "read" | "write" | "none";
101
+ "code-quality"?: "read" | "write" | "none";
101
102
  contents?: "read" | "write" | "none";
102
103
  deployments?: "read" | "write" | "none";
103
104
  discussions?: "read" | "write" | "none";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-github",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "GitHub Actions lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -95,6 +95,12 @@ export async function generateDocs(opts?: { verbose?: boolean }): Promise<void>
95
95
  serviceFromType,
96
96
  suppressPages: ["intrinsics", "rules"],
97
97
  examplesDir: join(pkgDir, "examples"),
98
+ extraSections: [
99
+ {
100
+ title: "Migrating to GitLab CI/CD?",
101
+ content: `The GitLab lexicon ships a typed-compiler migration tool that translates \`.github/workflows/*.yml\` into \`.gitlab-ci.yml\` (or chant TypeScript) with provenance, 33 curated marketplace-action mappings, and optional composite recognition. See [GitLab → Migration from GitHub Actions](/chant/lexicons/gitlab/migration/) or the [\`chant migrate\` CLI reference](/chant/cli/migrate/).`,
102
+ },
103
+ ],
98
104
  extraPages: [
99
105
  {
100
106
  slug: "getting-started",
@@ -98,6 +98,7 @@ export declare class Permissions {
98
98
  "artifact-metadata"?: "read" | "write" | "none";
99
99
  attestations?: "read" | "write" | "none";
100
100
  checks?: "read" | "write" | "none";
101
+ "code-quality"?: "read" | "write" | "none";
101
102
  contents?: "read" | "write" | "none";
102
103
  deployments?: "read" | "write" | "none";
103
104
  discussions?: "read" | "write" | "none";