@kungfu-tech/buildchain 2.14.18-alpha.1 → 2.14.18-alpha.11
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 +1 -0
- package/actions/promote-buildchain-ref/README.md +33 -30
- package/bin/buildchain.mjs +16 -4
- package/dist/site/buildchain-contract.json +86 -31
- package/dist/site/buildchain-site.json +88 -27
- package/dist/site/capability-registry.json +6 -5
- package/dist/site/cli-registry.json +12 -0
- package/dist/site/controller-registry.json +50 -6
- package/dist/site/kfd-claims.json +110 -21
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +21 -6
- package/dist/site/node-api-registry.json +19 -6
- package/dist/site/page-registry.json +70 -17
- package/dist/site/public-surface-audit.json +130 -23
- package/dist/site/publication-authority-registry.json +21 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +1 -0
- package/dist/site/site-manifest.json +18 -10
- package/dist/site/workflow-registry.json +62 -16
- package/docs/MAP.md +3 -1
- package/docs/github-governance-authority.md +267 -0
- package/docs/lifecycle-protocol.md +10 -10
- package/docs/publish-transaction.md +73 -4
- package/docs/release-governance.md +38 -24
- package/docs/reusable-build-surface.md +29 -11
- package/docs/web-surface-deployments.md +46 -0
- package/package.json +2 -1
- package/packages/core/buildchain-kfd-claims.js +2 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/controller-evidence.js +1 -1
- package/packages/core/github-governance-authority.js +1312 -0
- package/packages/core/index.js +22 -0
- package/packages/core/publication-control-plane-audit.js +4 -1
- package/scripts/audit-github-governance.mjs +474 -0
- package/scripts/audit-publication-control-plane.mjs +41 -5
- package/scripts/check-inventory.mjs +8 -0
- package/scripts/generate-channel-promotion-workflow.mjs +3 -0
- package/scripts/generate-site-bundle.mjs +5 -0
- package/scripts/installer-publication.mjs +351 -0
- package/scripts/publication-commit-evidence.mjs +158 -0
- package/scripts/reconcile-github-governance.mjs +549 -0
- package/scripts/release-candidate-resolver.mjs +53 -0
- package/scripts/web-surface-core.mjs +127 -14
|
@@ -247,14 +247,15 @@
|
|
|
247
247
|
],
|
|
248
248
|
"maturity": "stable",
|
|
249
249
|
"counts": {
|
|
250
|
-
"manualCount":
|
|
251
|
-
"pageCount":
|
|
252
|
-
"cliCommandCount":
|
|
253
|
-
"nodeApiCount":
|
|
250
|
+
"manualCount": 8,
|
|
251
|
+
"pageCount": 8,
|
|
252
|
+
"cliCommandCount": 8,
|
|
253
|
+
"nodeApiCount": 4,
|
|
254
254
|
"workflowCount": 11,
|
|
255
255
|
"actionCount": 0
|
|
256
256
|
},
|
|
257
257
|
"manuals": [
|
|
258
|
+
"docs/github-governance-authority.md",
|
|
258
259
|
"docs/infra-contract.md",
|
|
259
260
|
"docs/migration-inventory.md",
|
|
260
261
|
"docs/ownership.md",
|
|
@@ -288,7 +289,7 @@
|
|
|
288
289
|
"pageCount": 7,
|
|
289
290
|
"cliCommandCount": 0,
|
|
290
291
|
"nodeApiCount": 2,
|
|
291
|
-
"workflowCount":
|
|
292
|
+
"workflowCount": 34,
|
|
292
293
|
"actionCount": 1
|
|
293
294
|
},
|
|
294
295
|
"manuals": [
|
|
@@ -221,6 +221,18 @@
|
|
|
221
221
|
],
|
|
222
222
|
"maturity": "stable"
|
|
223
223
|
},
|
|
224
|
+
{
|
|
225
|
+
"id": "github-governance",
|
|
226
|
+
"source": "bin/buildchain.mjs",
|
|
227
|
+
"usage": "buildchain github-governance <plan|apply|rollback|protection-policy-plan|ruleset-policy-plan> ...",
|
|
228
|
+
"purpose": "Plan, apply, or roll back one root-bound GitHub branch-protection rollout after a frozen read-only inventory.",
|
|
229
|
+
"capabilityGroup": "governance-versioning",
|
|
230
|
+
"audience": [
|
|
231
|
+
"agent",
|
|
232
|
+
"operator"
|
|
233
|
+
],
|
|
234
|
+
"maturity": "stable"
|
|
235
|
+
},
|
|
224
236
|
{
|
|
225
237
|
"id": "help",
|
|
226
238
|
"source": "bin/buildchain.mjs",
|
|
@@ -222,6 +222,10 @@
|
|
|
222
222
|
"classification": "digest-only",
|
|
223
223
|
"source": "workflow-call-input"
|
|
224
224
|
},
|
|
225
|
+
"credential-island-caller-owned": {
|
|
226
|
+
"classification": "included",
|
|
227
|
+
"source": "workflow-call-input"
|
|
228
|
+
},
|
|
225
229
|
"credential-island-environment": {
|
|
226
230
|
"classification": "digest-only",
|
|
227
231
|
"source": "workflow-call-input"
|
|
@@ -419,7 +423,7 @@
|
|
|
419
423
|
"controller-receipt"
|
|
420
424
|
]
|
|
421
425
|
},
|
|
422
|
-
"digest": "sha256:
|
|
426
|
+
"digest": "sha256:a06607b6ebd3fb00b77519098c81d6fb5e9943ec268aebb1e5fdbefef6e598ad"
|
|
423
427
|
},
|
|
424
428
|
{
|
|
425
429
|
"schemaVersion": 1,
|
|
@@ -579,6 +583,10 @@
|
|
|
579
583
|
"classification": "digest-only",
|
|
580
584
|
"source": "workflow-call-input"
|
|
581
585
|
},
|
|
586
|
+
"credential-island-caller-owned": {
|
|
587
|
+
"classification": "included",
|
|
588
|
+
"source": "workflow-call-input"
|
|
589
|
+
},
|
|
582
590
|
"credential-island-environment": {
|
|
583
591
|
"classification": "digest-only",
|
|
584
592
|
"source": "workflow-call-input"
|
|
@@ -757,7 +765,7 @@
|
|
|
757
765
|
"controller-receipt"
|
|
758
766
|
]
|
|
759
767
|
},
|
|
760
|
-
"digest": "sha256:
|
|
768
|
+
"digest": "sha256:4fc6c33bf5b429f8087ac752d5cf2a19f4a1cc30db01aae927a28cee1cf924f0"
|
|
761
769
|
},
|
|
762
770
|
{
|
|
763
771
|
"schemaVersion": 1,
|
|
@@ -918,6 +926,10 @@
|
|
|
918
926
|
"classification": "included",
|
|
919
927
|
"source": "workflow-call-input"
|
|
920
928
|
},
|
|
929
|
+
"github-governance-receipt-json": {
|
|
930
|
+
"classification": "digest-only",
|
|
931
|
+
"source": "workflow-call-input"
|
|
932
|
+
},
|
|
921
933
|
"node-version": {
|
|
922
934
|
"classification": "included",
|
|
923
935
|
"source": "workflow-call-input"
|
|
@@ -1086,7 +1098,7 @@
|
|
|
1086
1098
|
"controller-receipt"
|
|
1087
1099
|
]
|
|
1088
1100
|
},
|
|
1089
|
-
"digest": "sha256:
|
|
1101
|
+
"digest": "sha256:65cc01e6d2b622277d67237e4811e82d24d2289d55c2f7d2dfb72325c610b2ea"
|
|
1090
1102
|
},
|
|
1091
1103
|
{
|
|
1092
1104
|
"schemaVersion": 1,
|
|
@@ -1277,6 +1289,10 @@
|
|
|
1277
1289
|
"classification": "included",
|
|
1278
1290
|
"source": "workflow-call-input"
|
|
1279
1291
|
},
|
|
1292
|
+
"github-governance-receipt-json": {
|
|
1293
|
+
"classification": "digest-only",
|
|
1294
|
+
"source": "workflow-call-input"
|
|
1295
|
+
},
|
|
1280
1296
|
"github-release": {
|
|
1281
1297
|
"classification": "included",
|
|
1282
1298
|
"source": "workflow-call-input"
|
|
@@ -1426,7 +1442,7 @@
|
|
|
1426
1442
|
"controller-receipt"
|
|
1427
1443
|
]
|
|
1428
1444
|
},
|
|
1429
|
-
"digest": "sha256:
|
|
1445
|
+
"digest": "sha256:6d71409659fbf8543c7e520b0c493d8afe86bdf60286b860bb917f0041ebc173"
|
|
1430
1446
|
},
|
|
1431
1447
|
{
|
|
1432
1448
|
"schemaVersion": 1,
|
|
@@ -1454,6 +1470,18 @@
|
|
|
1454
1470
|
"classification": "redacted",
|
|
1455
1471
|
"source": "workflow-call-secret"
|
|
1456
1472
|
},
|
|
1473
|
+
"BUILDCHAIN_PUBLICATION_COMMIT_SIGNING_KEY": {
|
|
1474
|
+
"classification": "redacted",
|
|
1475
|
+
"source": "workflow-call-secret"
|
|
1476
|
+
},
|
|
1477
|
+
"BUILDCHAIN_PUBLICATION_COMMIT_TOKEN": {
|
|
1478
|
+
"classification": "redacted",
|
|
1479
|
+
"source": "workflow-call-secret"
|
|
1480
|
+
},
|
|
1481
|
+
"KUNGFU_GOVERNANCE_AUDITOR_APP_PRIVATE_KEY": {
|
|
1482
|
+
"classification": "redacted",
|
|
1483
|
+
"source": "workflow-call-secret"
|
|
1484
|
+
},
|
|
1457
1485
|
"allow-repository": {
|
|
1458
1486
|
"classification": "included",
|
|
1459
1487
|
"source": "workflow-call-input"
|
|
@@ -1518,6 +1546,10 @@
|
|
|
1518
1546
|
"classification": "included",
|
|
1519
1547
|
"source": "workflow-call-input"
|
|
1520
1548
|
},
|
|
1549
|
+
"github-governance-receipt-json": {
|
|
1550
|
+
"classification": "digest-only",
|
|
1551
|
+
"source": "workflow-call-input"
|
|
1552
|
+
},
|
|
1521
1553
|
"github-release": {
|
|
1522
1554
|
"classification": "included",
|
|
1523
1555
|
"source": "workflow-call-input"
|
|
@@ -1526,6 +1558,10 @@
|
|
|
1526
1558
|
"classification": "digest-only",
|
|
1527
1559
|
"source": "workflow-call-input"
|
|
1528
1560
|
},
|
|
1561
|
+
"github-release-payload-patterns": {
|
|
1562
|
+
"classification": "included",
|
|
1563
|
+
"source": "workflow-call-input"
|
|
1564
|
+
},
|
|
1529
1565
|
"github-release-title": {
|
|
1530
1566
|
"classification": "included",
|
|
1531
1567
|
"source": "workflow-call-input"
|
|
@@ -1590,6 +1626,14 @@
|
|
|
1590
1626
|
"classification": "included",
|
|
1591
1627
|
"source": "workflow-call-input"
|
|
1592
1628
|
},
|
|
1629
|
+
"publication-commit-command": {
|
|
1630
|
+
"classification": "digest-only",
|
|
1631
|
+
"source": "workflow-call-input"
|
|
1632
|
+
},
|
|
1633
|
+
"publication-commit-evidence-path": {
|
|
1634
|
+
"classification": "digest-only",
|
|
1635
|
+
"source": "workflow-call-input"
|
|
1636
|
+
},
|
|
1593
1637
|
"publication-consumer-predicate-id": {
|
|
1594
1638
|
"classification": "included",
|
|
1595
1639
|
"source": "workflow-call-input"
|
|
@@ -1804,7 +1848,7 @@
|
|
|
1804
1848
|
"controller-receipt"
|
|
1805
1849
|
]
|
|
1806
1850
|
},
|
|
1807
|
-
"digest": "sha256:
|
|
1851
|
+
"digest": "sha256:98e2676d01470992d7b4ca9c2a1e12b0e6c816c0586a8e8e1736f4b58a1360a9"
|
|
1808
1852
|
},
|
|
1809
1853
|
{
|
|
1810
1854
|
"schemaVersion": 1,
|
|
@@ -1980,5 +2024,5 @@
|
|
|
1980
2024
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
1981
2025
|
}
|
|
1982
2026
|
],
|
|
1983
|
-
"digest": "sha256:
|
|
2027
|
+
"digest": "sha256:15fdbedc9c0a2b51104e854300d1725bcab76b11cebde61f53a70a49fe43966b"
|
|
1984
2028
|
}
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "e2ed3df53a48587531486466e02c82f044920fb629a77b0880e9b9aaa762adac",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
26
|
+
"cliCommandCount": 87,
|
|
27
|
+
"workflowCount": 52,
|
|
28
28
|
"actionCount": 5,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 54,
|
|
30
|
+
"docCommandRefCount": 276,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -228,13 +228,13 @@
|
|
|
228
228
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
229
229
|
"path": "dist/site/public-surface-audit.json",
|
|
230
230
|
"status": "passed",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "e2ed3df53a48587531486466e02c82f044920fb629a77b0880e9b9aaa762adac",
|
|
232
232
|
"summary": {
|
|
233
|
-
"cliCommandCount":
|
|
234
|
-
"workflowCount":
|
|
233
|
+
"cliCommandCount": 87,
|
|
234
|
+
"workflowCount": 52,
|
|
235
235
|
"actionCount": 5,
|
|
236
|
-
"sitePageCount":
|
|
237
|
-
"docCommandRefCount":
|
|
236
|
+
"sitePageCount": 54,
|
|
237
|
+
"docCommandRefCount": 276,
|
|
238
238
|
"failureCount": 0
|
|
239
239
|
},
|
|
240
240
|
"auditBoundary": {
|
|
@@ -392,6 +392,18 @@
|
|
|
392
392
|
"public": true,
|
|
393
393
|
"plane": "verify"
|
|
394
394
|
},
|
|
395
|
+
{
|
|
396
|
+
"id": "doc:docs/github-governance-authority.md",
|
|
397
|
+
"name": "GitHub governance authority",
|
|
398
|
+
"kind": "documentation",
|
|
399
|
+
"sourcePath": "docs/github-governance-authority.md",
|
|
400
|
+
"evidencePath": "docs/github-governance-authority.md",
|
|
401
|
+
"availability": "shipped",
|
|
402
|
+
"visibility": "public",
|
|
403
|
+
"participantFacing": true,
|
|
404
|
+
"public": true,
|
|
405
|
+
"plane": "verify"
|
|
406
|
+
},
|
|
395
407
|
{
|
|
396
408
|
"id": "doc:docs/homebrew.md",
|
|
397
409
|
"name": "Homebrew distribution indexes",
|
|
@@ -903,6 +915,17 @@
|
|
|
903
915
|
"participantFacing": true,
|
|
904
916
|
"public": true
|
|
905
917
|
},
|
|
918
|
+
{
|
|
919
|
+
"id": "schema:packages/core/github-governance-authority.js",
|
|
920
|
+
"name": "schema:packages/core/github-governance-authority.js",
|
|
921
|
+
"kind": "schema",
|
|
922
|
+
"sourcePath": "packages/core/github-governance-authority.js",
|
|
923
|
+
"evidencePath": "packages/core/github-governance-authority.js",
|
|
924
|
+
"availability": "shipped",
|
|
925
|
+
"visibility": "public",
|
|
926
|
+
"participantFacing": true,
|
|
927
|
+
"public": true
|
|
928
|
+
},
|
|
906
929
|
{
|
|
907
930
|
"id": "schema:packages/core/buildchain-kfd-claims.js",
|
|
908
931
|
"name": "schema:packages/core/buildchain-kfd-claims.js",
|
|
@@ -1318,6 +1341,18 @@
|
|
|
1318
1341
|
"public": true,
|
|
1319
1342
|
"packageExport": "./buildchain-publication-authority"
|
|
1320
1343
|
},
|
|
1344
|
+
{
|
|
1345
|
+
"id": "export:./github-governance-authority",
|
|
1346
|
+
"name": "@kungfu-tech/buildchain/github-governance-authority",
|
|
1347
|
+
"kind": "package-export",
|
|
1348
|
+
"sourcePath": "packages/core/github-governance-authority.js",
|
|
1349
|
+
"evidencePath": "packages/core/github-governance-authority.js",
|
|
1350
|
+
"availability": "shipped",
|
|
1351
|
+
"visibility": "public",
|
|
1352
|
+
"participantFacing": true,
|
|
1353
|
+
"public": true,
|
|
1354
|
+
"packageExport": "./github-governance-authority"
|
|
1355
|
+
},
|
|
1321
1356
|
{
|
|
1322
1357
|
"id": "export:./kfd-gate",
|
|
1323
1358
|
"name": "@kungfu-tech/buildchain/kfd-gate",
|
|
@@ -1854,6 +1889,18 @@
|
|
|
1854
1889
|
"public": true,
|
|
1855
1890
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
1856
1891
|
},
|
|
1892
|
+
{
|
|
1893
|
+
"id": "cli:github-governance",
|
|
1894
|
+
"name": "buildchain github-governance <plan|apply|rollback|protection-policy-plan|ruleset-policy-plan> ...",
|
|
1895
|
+
"kind": "cli-command",
|
|
1896
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
1897
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
1898
|
+
"availability": "shipped",
|
|
1899
|
+
"visibility": "public",
|
|
1900
|
+
"participantFacing": true,
|
|
1901
|
+
"public": true,
|
|
1902
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
1903
|
+
},
|
|
1857
1904
|
{
|
|
1858
1905
|
"id": "cli:help",
|
|
1859
1906
|
"name": "buildchain --help",
|
|
@@ -2680,12 +2727,13 @@
|
|
|
2680
2727
|
"visibility": "public",
|
|
2681
2728
|
"participantFacing": true,
|
|
2682
2729
|
"public": true,
|
|
2683
|
-
"inputCount":
|
|
2730
|
+
"inputCount": 15,
|
|
2684
2731
|
"inputs": [
|
|
2685
2732
|
"auto-admission",
|
|
2686
2733
|
"buildchain-ref",
|
|
2687
2734
|
"buildchain-repository",
|
|
2688
2735
|
"evidence-run-id",
|
|
2736
|
+
"github-governance-receipt-json",
|
|
2689
2737
|
"publication-admission-json",
|
|
2690
2738
|
"publication-control-plane-audit-json",
|
|
2691
2739
|
"publication-expected-json",
|
|
@@ -2709,7 +2757,7 @@
|
|
|
2709
2757
|
"visibility": "public",
|
|
2710
2758
|
"participantFacing": true,
|
|
2711
2759
|
"public": true,
|
|
2712
|
-
"inputCount":
|
|
2760
|
+
"inputCount": 65,
|
|
2713
2761
|
"inputs": [
|
|
2714
2762
|
"artifact-name",
|
|
2715
2763
|
"artifact-name-template",
|
|
@@ -2737,6 +2785,7 @@
|
|
|
2737
2785
|
"checkout-cache-mode",
|
|
2738
2786
|
"checkout-cache-reference-repository-template",
|
|
2739
2787
|
"checkout-cache-timeout-seconds",
|
|
2788
|
+
"credential-island-caller-owned",
|
|
2740
2789
|
"credential-island-environment",
|
|
2741
2790
|
"credential-island-macos-app-path",
|
|
2742
2791
|
"credential-island-macos-platform-id",
|
|
@@ -2836,7 +2885,7 @@
|
|
|
2836
2885
|
"visibility": "public",
|
|
2837
2886
|
"participantFacing": true,
|
|
2838
2887
|
"public": true,
|
|
2839
|
-
"inputCount":
|
|
2888
|
+
"inputCount": 33,
|
|
2840
2889
|
"inputs": [
|
|
2841
2890
|
"admission-json",
|
|
2842
2891
|
"authority-workflow-path",
|
|
@@ -2860,6 +2909,7 @@
|
|
|
2860
2909
|
"evidence-summary-artifact",
|
|
2861
2910
|
"expected-json",
|
|
2862
2911
|
"gate-aggregate-json",
|
|
2912
|
+
"github-governance-receipt-json",
|
|
2863
2913
|
"package-name",
|
|
2864
2914
|
"product",
|
|
2865
2915
|
"publication-target",
|
|
@@ -2883,7 +2933,7 @@
|
|
|
2883
2933
|
"visibility": "public",
|
|
2884
2934
|
"participantFacing": true,
|
|
2885
2935
|
"public": true,
|
|
2886
|
-
"inputCount":
|
|
2936
|
+
"inputCount": 78,
|
|
2887
2937
|
"inputs": [
|
|
2888
2938
|
"allow-repository",
|
|
2889
2939
|
"artifact-name",
|
|
@@ -2898,8 +2948,10 @@
|
|
|
2898
2948
|
"buildchain-repository",
|
|
2899
2949
|
"channel",
|
|
2900
2950
|
"dry-run",
|
|
2951
|
+
"github-governance-receipt-json",
|
|
2901
2952
|
"github-release",
|
|
2902
2953
|
"github-release-notes",
|
|
2954
|
+
"github-release-payload-patterns",
|
|
2903
2955
|
"github-release-title",
|
|
2904
2956
|
"package-manager",
|
|
2905
2957
|
"promotion-contract-lock-digest",
|
|
@@ -2916,6 +2968,8 @@
|
|
|
2916
2968
|
"publication-admission-json",
|
|
2917
2969
|
"publication-auto-admission",
|
|
2918
2970
|
"publication-auto-no-gate",
|
|
2971
|
+
"publication-commit-command",
|
|
2972
|
+
"publication-commit-evidence-path",
|
|
2919
2973
|
"publication-consumer-predicate-id",
|
|
2920
2974
|
"publication-consumer-qualification-command",
|
|
2921
2975
|
"publication-control-plane-audit-json",
|
|
@@ -3189,7 +3243,7 @@
|
|
|
3189
3243
|
"visibility": "public",
|
|
3190
3244
|
"participantFacing": true,
|
|
3191
3245
|
"public": true,
|
|
3192
|
-
"inputCount":
|
|
3246
|
+
"inputCount": 40,
|
|
3193
3247
|
"inputs": [
|
|
3194
3248
|
"artifact-path",
|
|
3195
3249
|
"aws-region",
|
|
@@ -3200,6 +3254,7 @@
|
|
|
3200
3254
|
"buildchain-ref",
|
|
3201
3255
|
"buildchain-repository",
|
|
3202
3256
|
"fail-on-release-pr-error",
|
|
3257
|
+
"github-governance-receipt-json",
|
|
3203
3258
|
"node-version",
|
|
3204
3259
|
"preview-apply",
|
|
3205
3260
|
"preview-aws-role-arn",
|
|
@@ -3323,7 +3378,7 @@
|
|
|
3323
3378
|
"visibility": "public",
|
|
3324
3379
|
"participantFacing": true,
|
|
3325
3380
|
"public": true,
|
|
3326
|
-
"inputCount":
|
|
3381
|
+
"inputCount": 68,
|
|
3327
3382
|
"inputs": [
|
|
3328
3383
|
"artifact-name",
|
|
3329
3384
|
"artifact-name-template",
|
|
@@ -3354,6 +3409,7 @@
|
|
|
3354
3409
|
"checkout-cache-mode",
|
|
3355
3410
|
"checkout-cache-reference-repository-template",
|
|
3356
3411
|
"checkout-cache-timeout-seconds",
|
|
3412
|
+
"credential-island-caller-owned",
|
|
3357
3413
|
"credential-island-environment",
|
|
3358
3414
|
"credential-island-macos-app-path",
|
|
3359
3415
|
"credential-island-macos-platform-id",
|
|
@@ -3602,6 +3658,20 @@
|
|
|
3602
3658
|
],
|
|
3603
3659
|
"reverseAuditSource": ".github/workflows"
|
|
3604
3660
|
},
|
|
3661
|
+
{
|
|
3662
|
+
"id": "workflow:github-governance-audit",
|
|
3663
|
+
"name": "workflow:github-governance-audit",
|
|
3664
|
+
"kind": "workflow",
|
|
3665
|
+
"sourcePath": ".github/workflows/github-governance-audit.yml",
|
|
3666
|
+
"evidencePath": ".github/workflows/github-governance-audit.yml",
|
|
3667
|
+
"availability": "shipped",
|
|
3668
|
+
"visibility": "public",
|
|
3669
|
+
"participantFacing": true,
|
|
3670
|
+
"public": true,
|
|
3671
|
+
"inputCount": 0,
|
|
3672
|
+
"inputs": [],
|
|
3673
|
+
"reverseAuditSource": ".github/workflows"
|
|
3674
|
+
},
|
|
3605
3675
|
{
|
|
3606
3676
|
"id": "workflow:npm-publish",
|
|
3607
3677
|
"name": "workflow:npm-publish",
|
|
@@ -3626,7 +3696,7 @@
|
|
|
3626
3696
|
"visibility": "public",
|
|
3627
3697
|
"participantFacing": true,
|
|
3628
3698
|
"public": true,
|
|
3629
|
-
"inputCount":
|
|
3699
|
+
"inputCount": 26,
|
|
3630
3700
|
"inputs": [
|
|
3631
3701
|
"artifact-name",
|
|
3632
3702
|
"artifact-paths",
|
|
@@ -3638,6 +3708,7 @@
|
|
|
3638
3708
|
"buildchain-ref",
|
|
3639
3709
|
"buildchain-repository",
|
|
3640
3710
|
"dry-run",
|
|
3711
|
+
"github-governance-receipt-json",
|
|
3641
3712
|
"github-release",
|
|
3642
3713
|
"github-release-notes",
|
|
3643
3714
|
"github-release-title",
|
|
@@ -3666,7 +3737,7 @@
|
|
|
3666
3737
|
"visibility": "public",
|
|
3667
3738
|
"participantFacing": true,
|
|
3668
3739
|
"public": true,
|
|
3669
|
-
"inputCount":
|
|
3740
|
+
"inputCount": 38,
|
|
3670
3741
|
"inputs": [
|
|
3671
3742
|
"artifact-name",
|
|
3672
3743
|
"artifact-retention-days",
|
|
@@ -3680,6 +3751,7 @@
|
|
|
3680
3751
|
"buildchain-ref",
|
|
3681
3752
|
"buildchain-repository",
|
|
3682
3753
|
"dry-run",
|
|
3754
|
+
"github-governance-receipt-json",
|
|
3683
3755
|
"github-release",
|
|
3684
3756
|
"github-release-notes",
|
|
3685
3757
|
"github-release-title",
|
|
@@ -3847,7 +3919,7 @@
|
|
|
3847
3919
|
"visibility": "public",
|
|
3848
3920
|
"participantFacing": true,
|
|
3849
3921
|
"public": true,
|
|
3850
|
-
"inputCount":
|
|
3922
|
+
"inputCount": 70,
|
|
3851
3923
|
"inputs": [
|
|
3852
3924
|
"allow-repository",
|
|
3853
3925
|
"artifact-name",
|
|
@@ -3865,13 +3937,17 @@
|
|
|
3865
3937
|
"buildchain-stable-contract-lock-path",
|
|
3866
3938
|
"channel",
|
|
3867
3939
|
"dry-run",
|
|
3940
|
+
"github-governance-receipt-json",
|
|
3868
3941
|
"github-release",
|
|
3869
3942
|
"github-release-notes",
|
|
3943
|
+
"github-release-payload-patterns",
|
|
3870
3944
|
"github-release-title",
|
|
3871
3945
|
"package-manager",
|
|
3872
3946
|
"publication-admission-json",
|
|
3873
3947
|
"publication-auto-admission",
|
|
3874
3948
|
"publication-auto-no-gate",
|
|
3949
|
+
"publication-commit-command",
|
|
3950
|
+
"publication-commit-evidence-path",
|
|
3875
3951
|
"publication-consumer-predicate-id",
|
|
3876
3952
|
"publication-consumer-qualification-command",
|
|
3877
3953
|
"publication-control-plane-audit-json",
|
|
@@ -4127,7 +4203,7 @@
|
|
|
4127
4203
|
"visibility": "public",
|
|
4128
4204
|
"participantFacing": true,
|
|
4129
4205
|
"public": true,
|
|
4130
|
-
"inputCount":
|
|
4206
|
+
"inputCount": 64,
|
|
4131
4207
|
"inputs": [
|
|
4132
4208
|
"allow-repository",
|
|
4133
4209
|
"branch-protection-bypass-apps",
|
|
@@ -4135,6 +4211,7 @@
|
|
|
4135
4211
|
"branch-protection-bypass-users",
|
|
4136
4212
|
"dry-run",
|
|
4137
4213
|
"expected-publication-version",
|
|
4214
|
+
"generated-pull-request-token",
|
|
4138
4215
|
"generated-ref-update-token",
|
|
4139
4216
|
"generated-status-check-token",
|
|
4140
4217
|
"github-release",
|
|
@@ -4595,6 +4672,18 @@
|
|
|
4595
4672
|
"public": true,
|
|
4596
4673
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4597
4674
|
},
|
|
4675
|
+
{
|
|
4676
|
+
"id": "site-page:manual:github-governance-authority",
|
|
4677
|
+
"name": "site-page:manual:github-governance-authority",
|
|
4678
|
+
"kind": "site-page",
|
|
4679
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
4680
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
4681
|
+
"availability": "shipped",
|
|
4682
|
+
"visibility": "public",
|
|
4683
|
+
"participantFacing": true,
|
|
4684
|
+
"public": true,
|
|
4685
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4686
|
+
},
|
|
4598
4687
|
{
|
|
4599
4688
|
"id": "site-page:manual:homebrew",
|
|
4600
4689
|
"name": "site-page:manual:homebrew",
|
|
@@ -5081,6 +5170,6 @@
|
|
|
5081
5170
|
}
|
|
5082
5171
|
}
|
|
5083
5172
|
],
|
|
5084
|
-
"publicSurfaceCount":
|
|
5173
|
+
"publicSurfaceCount": 329
|
|
5085
5174
|
}
|
|
5086
5175
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Buildchain documentation map",
|
|
10
10
|
"path": "docs/MAP.md",
|
|
11
11
|
"plane": "use",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:c9eb92eb02601e1e36cb38d7df93097c582dec2b8dc34f769f58c30fc5190bbe",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -74,6 +74,21 @@
|
|
|
74
74
|
"maturity": "preview",
|
|
75
75
|
"order": 105
|
|
76
76
|
},
|
|
77
|
+
{
|
|
78
|
+
"id": "github-governance-authority",
|
|
79
|
+
"title": "GitHub governance authority",
|
|
80
|
+
"path": "docs/github-governance-authority.md",
|
|
81
|
+
"plane": "verify",
|
|
82
|
+
"digest": "sha256:8484b18d5b0fe6d61d102d6b9cb9e18beac9f47ecb516d430fb5427518e2931f",
|
|
83
|
+
"capabilityGroup": "governance-versioning",
|
|
84
|
+
"audience": [
|
|
85
|
+
"maintainer",
|
|
86
|
+
"release-operator",
|
|
87
|
+
"agent"
|
|
88
|
+
],
|
|
89
|
+
"maturity": "preview",
|
|
90
|
+
"order": 106
|
|
91
|
+
},
|
|
77
92
|
{
|
|
78
93
|
"id": "release-candidate",
|
|
79
94
|
"title": "Release Candidate Passport",
|
|
@@ -303,7 +318,7 @@
|
|
|
303
318
|
"title": "Lifecycle protocol",
|
|
304
319
|
"path": "docs/lifecycle-protocol.md",
|
|
305
320
|
"plane": "use",
|
|
306
|
-
"digest": "sha256:
|
|
321
|
+
"digest": "sha256:9c669d3d2d1926dc5b421207089cca85bac0a6dcdb5544c28a7e1659ba9ed5ee",
|
|
307
322
|
"capabilityGroup": "reusable-build",
|
|
308
323
|
"audience": [
|
|
309
324
|
"consumer",
|
|
@@ -317,7 +332,7 @@
|
|
|
317
332
|
"title": "Reusable build surface",
|
|
318
333
|
"path": "docs/reusable-build-surface.md",
|
|
319
334
|
"plane": "use",
|
|
320
|
-
"digest": "sha256:
|
|
335
|
+
"digest": "sha256:ff6f36e1db2be12df37ef076935b5583493742528d98403297678a0682b67dc2",
|
|
321
336
|
"capabilityGroup": "reusable-build",
|
|
322
337
|
"audience": [
|
|
323
338
|
"consumer",
|
|
@@ -331,7 +346,7 @@
|
|
|
331
346
|
"title": "Publish transaction",
|
|
332
347
|
"path": "docs/publish-transaction.md",
|
|
333
348
|
"plane": "verify",
|
|
334
|
-
"digest": "sha256:
|
|
349
|
+
"digest": "sha256:cde5256d5f6443a6d32b47783900a0677e973855266af5a360db8d4d112bb677",
|
|
335
350
|
"capabilityGroup": "release-passport-trust",
|
|
336
351
|
"audience": [
|
|
337
352
|
"release-operator"
|
|
@@ -344,7 +359,7 @@
|
|
|
344
359
|
"title": "Release governance",
|
|
345
360
|
"path": "docs/release-governance.md",
|
|
346
361
|
"plane": "why",
|
|
347
|
-
"digest": "sha256:
|
|
362
|
+
"digest": "sha256:5aa7fef2c831d14b4d1df4cddb45c6ce97929d8530eb14e3b3dfa3dee5e0d651",
|
|
348
363
|
"capabilityGroup": "governance-versioning",
|
|
349
364
|
"audience": [
|
|
350
365
|
"maintainer",
|
|
@@ -399,7 +414,7 @@
|
|
|
399
414
|
"title": "Web surface deployments",
|
|
400
415
|
"path": "docs/web-surface-deployments.md",
|
|
401
416
|
"plane": "use",
|
|
402
|
-
"digest": "sha256:
|
|
417
|
+
"digest": "sha256:809d765d89277320d710ecfdc2287029530b74fe38f36dd04d057076dded9a0d",
|
|
403
418
|
"capabilityGroup": "site-and-propagation",
|
|
404
419
|
"audience": [
|
|
405
420
|
"site",
|