@kungfu-tech/buildchain 3.0.6-alpha.1 → 3.0.6-alpha.2
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 -4
- package/actions/promote-buildchain-ref/README.md +8 -0
- package/bin/buildchain.mjs +13 -1
- package/contracts/auditable-demo-scenario-v1.schema.json +52 -0
- package/dist/site/buildchain-contract.json +47 -27
- package/dist/site/buildchain-site.json +158 -42
- package/dist/site/capability-registry.json +3 -3
- package/dist/site/cli-registry.json +40 -4
- package/dist/site/controller-registry.json +20 -4
- package/dist/site/kfd-claims.json +139 -19
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +9 -9
- package/dist/site/node-api-registry.json +1161 -180
- package/dist/site/page-registry.json +145 -29
- package/dist/site/public-surface-audit.json +385 -19
- package/dist/site/publication-authority-registry.json +61 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +1 -0
- package/dist/site/site-manifest.json +13 -13
- package/dist/site/workflow-registry.json +150 -13
- package/docs/MAP.md +1 -0
- package/docs/auditable-demo.md +58 -11
- package/docs/aws-us-elastic-runner-burst-plane.md +23 -19
- package/docs/cli-reference.md +154 -0
- package/docs/dev-alpha-candidate-patrol.md +13 -5
- package/docs/dev-delivery-warrant.md +158 -0
- package/docs/node-api-reference.md +54 -15
- package/docs/publication-authority.md +11 -0
- package/docs/release-candidate.md +19 -2
- package/docs/release-governance.md +52 -0
- package/docs/reusable-build-surface.md +11 -1
- package/docs/shifu-gate-profiles.md +12 -1
- package/docs/versioning.md +2 -0
- package/package.json +2 -1
- package/packages/core/buildchain-publication-authority.js +3 -1
- package/packages/core/channel-candidate.js +2 -21
- package/packages/core/channel-promotion-baseline.js +199 -0
- package/packages/core/dev-delivery-candidate-identity.js +94 -0
- package/packages/core/dev-delivery-common.js +73 -0
- package/packages/core/dev-delivery-proof.js +252 -0
- package/packages/core/dev-delivery-warrant-cancellation.js +94 -0
- package/packages/core/dev-delivery-warrant-settlement.js +73 -0
- package/packages/core/dev-delivery-warrant.js +591 -0
- package/scripts/auditable-demo-bundle-verification.mjs +148 -0
- package/scripts/auditable-demo-platform.mjs +86 -50
- package/scripts/auditable-demo-presentation.mjs +83 -0
- package/scripts/auditable-demo-renditions.mjs +264 -0
- package/scripts/auditable-demo.mjs +24 -30
- package/scripts/build-contract-core.mjs +58 -3
- package/scripts/buildchain-cli-help.mjs +8 -0
- package/scripts/buildchain-patrol.mjs +9 -0
- package/scripts/check-inventory.mjs +1 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +45 -48
- package/scripts/dev-delivery-proof.mjs +193 -0
- package/scripts/dev-delivery-warrant.mjs +426 -0
- package/scripts/dev-pr-auto-merge.mjs +488 -46
- package/scripts/dev-pr-delivery-warrant.mjs +209 -0
- package/scripts/gate-profile-core.mjs +24 -0
- package/scripts/generate-site-bundle.mjs +2 -2
- package/scripts/git-fetch-process-tree.mjs +142 -0
- package/scripts/lifecycle-substage-evidence.mjs +274 -0
- package/scripts/locked-source-checkout.mjs +6 -3
- package/scripts/resolve-artifact-transfer-mode.mjs +9 -0
- package/scripts/resolve-build-contract.mjs +7 -0
- package/scripts/route-offline-runners.mjs +1 -0
- package/scripts/run-lifecycle-core.mjs +9 -9
- package/scripts/shifu-gate-profile.mjs +10 -16
- package/scripts/site-capability-metadata.mjs +14 -0
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"maturity": "stable",
|
|
16
16
|
"counts": {
|
|
17
17
|
"manualCount": 4,
|
|
18
|
-
"pageCount":
|
|
18
|
+
"pageCount": 15,
|
|
19
19
|
"cliCommandCount": 9,
|
|
20
20
|
"nodeApiCount": 0,
|
|
21
21
|
"workflowCount": 0,
|
|
@@ -253,8 +253,8 @@
|
|
|
253
253
|
"manualCount": 8,
|
|
254
254
|
"pageCount": 8,
|
|
255
255
|
"cliCommandCount": 11,
|
|
256
|
-
"nodeApiCount":
|
|
257
|
-
"workflowCount":
|
|
256
|
+
"nodeApiCount": 6,
|
|
257
|
+
"workflowCount": 16,
|
|
258
258
|
"actionCount": 0
|
|
259
259
|
},
|
|
260
260
|
"manuals": [
|
|
@@ -409,29 +409,65 @@
|
|
|
409
409
|
{
|
|
410
410
|
"id": "dev",
|
|
411
411
|
"source": "bin/buildchain.mjs",
|
|
412
|
-
"usage": "buildchain dev
|
|
412
|
+
"usage": "buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M>",
|
|
413
413
|
"paths": [
|
|
414
414
|
"dev",
|
|
415
|
-
"dev merge-queue"
|
|
415
|
+
"dev merge-queue",
|
|
416
|
+
"dev pr-admit",
|
|
417
|
+
"dev proof classify",
|
|
418
|
+
"dev proof integration",
|
|
419
|
+
"dev proof replay",
|
|
420
|
+
"dev proof source",
|
|
421
|
+
"dev proof verify-integration",
|
|
422
|
+
"dev proof verify-source",
|
|
423
|
+
"dev warrant cancel-queued",
|
|
424
|
+
"dev warrant close",
|
|
425
|
+
"dev warrant heartbeat",
|
|
426
|
+
"dev warrant observe",
|
|
427
|
+
"dev warrant recover",
|
|
428
|
+
"dev warrant select",
|
|
429
|
+
"dev warrant submit"
|
|
416
430
|
],
|
|
417
431
|
"syntaxes": [
|
|
418
432
|
"buildchain dev",
|
|
419
|
-
"buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M> [--from-config | --workflow <required-workflow.yml>...] [--cwd <dir>] [--check-response-timeout-minutes <n>] [--max-entries-to-build <n>] [--apply]"
|
|
433
|
+
"buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M> [--from-config | --workflow <required-workflow.yml>...] [--cwd <dir>] [--check-response-timeout-minutes <n>] [--max-entries-to-build <n>] [--apply]",
|
|
434
|
+
"buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M> --pull-request <n> --expected-head <sha> [--execute] [--output <file>] [--json]",
|
|
435
|
+
"buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]",
|
|
436
|
+
"buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]"
|
|
420
437
|
],
|
|
421
438
|
"options": [
|
|
422
439
|
"--apply",
|
|
423
440
|
"--branch",
|
|
424
441
|
"--check-response-timeout-minutes",
|
|
425
442
|
"--cwd",
|
|
443
|
+
"--execute",
|
|
444
|
+
"--expected-head",
|
|
426
445
|
"--from-config",
|
|
446
|
+
"--json",
|
|
427
447
|
"--max-entries-to-build",
|
|
448
|
+
"--output",
|
|
449
|
+
"--pull-request",
|
|
428
450
|
"--repository",
|
|
429
451
|
"--workflow"
|
|
430
452
|
],
|
|
431
453
|
"aliases": [],
|
|
432
454
|
"helpCommands": [
|
|
433
455
|
"buildchain dev --help",
|
|
434
|
-
"buildchain dev merge-queue --help"
|
|
456
|
+
"buildchain dev merge-queue --help",
|
|
457
|
+
"buildchain dev pr-admit --help",
|
|
458
|
+
"buildchain dev proof classify --help",
|
|
459
|
+
"buildchain dev proof integration --help",
|
|
460
|
+
"buildchain dev proof replay --help",
|
|
461
|
+
"buildchain dev proof source --help",
|
|
462
|
+
"buildchain dev proof verify-integration --help",
|
|
463
|
+
"buildchain dev proof verify-source --help",
|
|
464
|
+
"buildchain dev warrant cancel-queued --help",
|
|
465
|
+
"buildchain dev warrant close --help",
|
|
466
|
+
"buildchain dev warrant heartbeat --help",
|
|
467
|
+
"buildchain dev warrant observe --help",
|
|
468
|
+
"buildchain dev warrant recover --help",
|
|
469
|
+
"buildchain dev warrant select --help",
|
|
470
|
+
"buildchain dev warrant submit --help"
|
|
435
471
|
],
|
|
436
472
|
"purpose": "Inspect protected development-channel governance command families.",
|
|
437
473
|
"capabilityGroup": "governance-versioning",
|
|
@@ -458,6 +458,10 @@
|
|
|
458
458
|
"classification": "digest-only",
|
|
459
459
|
"source": "workflow-call-input"
|
|
460
460
|
},
|
|
461
|
+
"verify-substage-evidence-path": {
|
|
462
|
+
"classification": "digest-only",
|
|
463
|
+
"source": "workflow-call-input"
|
|
464
|
+
},
|
|
461
465
|
"working-directory": {
|
|
462
466
|
"classification": "digest-only",
|
|
463
467
|
"source": "workflow-call-input"
|
|
@@ -512,7 +516,7 @@
|
|
|
512
516
|
"controller-receipt"
|
|
513
517
|
]
|
|
514
518
|
},
|
|
515
|
-
"digest": "sha256:
|
|
519
|
+
"digest": "sha256:9c0aacca910cef4619a797898ff5c24027c1583f84431a93a5efc854925326e7"
|
|
516
520
|
},
|
|
517
521
|
{
|
|
518
522
|
"schemaVersion": 1,
|
|
@@ -908,6 +912,10 @@
|
|
|
908
912
|
"classification": "digest-only",
|
|
909
913
|
"source": "workflow-call-input"
|
|
910
914
|
},
|
|
915
|
+
"verify-substage-evidence-path": {
|
|
916
|
+
"classification": "digest-only",
|
|
917
|
+
"source": "workflow-call-input"
|
|
918
|
+
},
|
|
911
919
|
"working-directory": {
|
|
912
920
|
"classification": "digest-only",
|
|
913
921
|
"source": "workflow-call-input"
|
|
@@ -938,7 +946,7 @@
|
|
|
938
946
|
"controller-receipt"
|
|
939
947
|
]
|
|
940
948
|
},
|
|
941
|
-
"digest": "sha256:
|
|
949
|
+
"digest": "sha256:48545554883888862984cdf1b6b4b56341531cdd6192600782a76b92ad22fd36"
|
|
942
950
|
},
|
|
943
951
|
{
|
|
944
952
|
"schemaVersion": 1,
|
|
@@ -1887,6 +1895,10 @@
|
|
|
1887
1895
|
"classification": "digest-only",
|
|
1888
1896
|
"source": "workflow-call-input"
|
|
1889
1897
|
},
|
|
1898
|
+
"publication-gate-command": {
|
|
1899
|
+
"classification": "digest-only",
|
|
1900
|
+
"source": "workflow-call-input"
|
|
1901
|
+
},
|
|
1890
1902
|
"publication-package-name": {
|
|
1891
1903
|
"classification": "included",
|
|
1892
1904
|
"source": "workflow-call-input"
|
|
@@ -1979,6 +1991,10 @@
|
|
|
1979
1991
|
"classification": "included",
|
|
1980
1992
|
"source": "workflow-call-input"
|
|
1981
1993
|
},
|
|
1994
|
+
"release-candidate-wait-seconds": {
|
|
1995
|
+
"classification": "included",
|
|
1996
|
+
"source": "workflow-call-input"
|
|
1997
|
+
},
|
|
1982
1998
|
"release-candidate-workflow-file": {
|
|
1983
1999
|
"classification": "included",
|
|
1984
2000
|
"source": "workflow-call-input"
|
|
@@ -2137,7 +2153,7 @@
|
|
|
2137
2153
|
"controller-receipt"
|
|
2138
2154
|
]
|
|
2139
2155
|
},
|
|
2140
|
-
"digest": "sha256:
|
|
2156
|
+
"digest": "sha256:a13b820669b162ab2f39d213164e7b7ab4e24c65f93cd3265a977fcd667c1303"
|
|
2141
2157
|
},
|
|
2142
2158
|
{
|
|
2143
2159
|
"schemaVersion": 1,
|
|
@@ -2330,5 +2346,5 @@
|
|
|
2330
2346
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
2331
2347
|
}
|
|
2332
2348
|
],
|
|
2333
|
-
"digest": "sha256:
|
|
2349
|
+
"digest": "sha256:e7d02924b5f42f513e6f6a3b2cdbccdcd92b594b63ebc7aa8dd8cd3d8376283e"
|
|
2334
2350
|
}
|
|
@@ -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": "000be65d0102e56b08a7c98e12836af0b137603e1c438b248f017ac338394271",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 112,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 63,
|
|
28
28
|
"actionCount": 6,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 65,
|
|
30
|
+
"docCommandRefCount": 881,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -246,13 +246,13 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "000be65d0102e56b08a7c98e12836af0b137603e1c438b248f017ac338394271",
|
|
250
250
|
"summary": {
|
|
251
251
|
"cliCommandCount": 112,
|
|
252
|
-
"workflowCount":
|
|
252
|
+
"workflowCount": 63,
|
|
253
253
|
"actionCount": 6,
|
|
254
|
-
"sitePageCount":
|
|
255
|
-
"docCommandRefCount":
|
|
254
|
+
"sitePageCount": 65,
|
|
255
|
+
"docCommandRefCount": 881,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -1352,6 +1352,18 @@
|
|
|
1352
1352
|
"public": true,
|
|
1353
1353
|
"packageExport": "./diagnostics"
|
|
1354
1354
|
},
|
|
1355
|
+
{
|
|
1356
|
+
"id": "export:./dev-delivery-warrant",
|
|
1357
|
+
"name": "@kungfu-tech/buildchain/dev-delivery-warrant",
|
|
1358
|
+
"kind": "package-export",
|
|
1359
|
+
"sourcePath": "packages/core/dev-delivery-warrant.js",
|
|
1360
|
+
"evidencePath": "packages/core/dev-delivery-warrant.js",
|
|
1361
|
+
"availability": "shipped",
|
|
1362
|
+
"visibility": "public",
|
|
1363
|
+
"participantFacing": true,
|
|
1364
|
+
"public": true,
|
|
1365
|
+
"packageExport": "./dev-delivery-warrant"
|
|
1366
|
+
},
|
|
1355
1367
|
{
|
|
1356
1368
|
"id": "export:./homebrew",
|
|
1357
1369
|
"name": "@kungfu-tech/buildchain/homebrew",
|
|
@@ -2046,7 +2058,7 @@
|
|
|
2046
2058
|
},
|
|
2047
2059
|
{
|
|
2048
2060
|
"id": "cli:dev",
|
|
2049
|
-
"name": "buildchain dev
|
|
2061
|
+
"name": "buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M>",
|
|
2050
2062
|
"kind": "cli-command",
|
|
2051
2063
|
"sourcePath": "bin/buildchain.mjs",
|
|
2052
2064
|
"evidencePath": "bin/buildchain.mjs",
|
|
@@ -3334,7 +3346,7 @@
|
|
|
3334
3346
|
"visibility": "public",
|
|
3335
3347
|
"participantFacing": true,
|
|
3336
3348
|
"public": true,
|
|
3337
|
-
"inputCount":
|
|
3349
|
+
"inputCount": 86,
|
|
3338
3350
|
"inputs": [
|
|
3339
3351
|
"artifact-compression-level",
|
|
3340
3352
|
"artifact-name",
|
|
@@ -3420,6 +3432,7 @@
|
|
|
3420
3432
|
"shifu-cache-profile-ref",
|
|
3421
3433
|
"untrusted-policy",
|
|
3422
3434
|
"verify-command",
|
|
3435
|
+
"verify-substage-evidence-path",
|
|
3423
3436
|
"working-directory"
|
|
3424
3437
|
],
|
|
3425
3438
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -3448,7 +3461,7 @@
|
|
|
3448
3461
|
"visibility": "public",
|
|
3449
3462
|
"participantFacing": true,
|
|
3450
3463
|
"public": true,
|
|
3451
|
-
"inputCount":
|
|
3464
|
+
"inputCount": 12,
|
|
3452
3465
|
"inputs": [
|
|
3453
3466
|
"artifact-retention-days",
|
|
3454
3467
|
"binary-artifact-digest",
|
|
@@ -3457,6 +3470,7 @@
|
|
|
3457
3470
|
"materialize",
|
|
3458
3471
|
"materialize-base-ref",
|
|
3459
3472
|
"media-profile",
|
|
3473
|
+
"render-failure-advisory",
|
|
3460
3474
|
"render-media",
|
|
3461
3475
|
"renderer-image",
|
|
3462
3476
|
"scenario-path",
|
|
@@ -3519,7 +3533,7 @@
|
|
|
3519
3533
|
"visibility": "public",
|
|
3520
3534
|
"participantFacing": true,
|
|
3521
3535
|
"public": true,
|
|
3522
|
-
"inputCount":
|
|
3536
|
+
"inputCount": 34,
|
|
3523
3537
|
"inputs": [
|
|
3524
3538
|
"admission-json",
|
|
3525
3539
|
"authority-workflow-path",
|
|
@@ -3528,6 +3542,7 @@
|
|
|
3528
3542
|
"auto-no-gate",
|
|
3529
3543
|
"buildchain-ref",
|
|
3530
3544
|
"buildchain-repository",
|
|
3545
|
+
"consumer-gate-command",
|
|
3531
3546
|
"consumer-predicate-digest",
|
|
3532
3547
|
"consumer-predicate-id",
|
|
3533
3548
|
"consumer-qualification-required",
|
|
@@ -3567,7 +3582,7 @@
|
|
|
3567
3582
|
"visibility": "public",
|
|
3568
3583
|
"participantFacing": true,
|
|
3569
3584
|
"public": true,
|
|
3570
|
-
"inputCount":
|
|
3585
|
+
"inputCount": 97,
|
|
3571
3586
|
"inputs": [
|
|
3572
3587
|
"allow-repository",
|
|
3573
3588
|
"artifact-name",
|
|
@@ -3612,6 +3627,7 @@
|
|
|
3612
3627
|
"publication-control-plane-audit-json",
|
|
3613
3628
|
"publication-expected-json",
|
|
3614
3629
|
"publication-gate-aggregate-json",
|
|
3630
|
+
"publication-gate-command",
|
|
3615
3631
|
"publication-package-name",
|
|
3616
3632
|
"publication-product",
|
|
3617
3633
|
"publication-publisher-workflow-path",
|
|
@@ -3635,6 +3651,7 @@
|
|
|
3635
3651
|
"release-candidate-family-evidence-required",
|
|
3636
3652
|
"release-candidate-family-evidence-root",
|
|
3637
3653
|
"release-candidate-family-initiative-id",
|
|
3654
|
+
"release-candidate-wait-seconds",
|
|
3638
3655
|
"release-candidate-workflow-file",
|
|
3639
3656
|
"release-candidate-workflow-name",
|
|
3640
3657
|
"release-passport",
|
|
@@ -4072,7 +4089,7 @@
|
|
|
4072
4089
|
"visibility": "public",
|
|
4073
4090
|
"participantFacing": true,
|
|
4074
4091
|
"public": true,
|
|
4075
|
-
"inputCount":
|
|
4092
|
+
"inputCount": 89,
|
|
4076
4093
|
"inputs": [
|
|
4077
4094
|
"artifact-compression-level",
|
|
4078
4095
|
"artifact-name",
|
|
@@ -4161,6 +4178,7 @@
|
|
|
4161
4178
|
"shifu-cache-profile-ref",
|
|
4162
4179
|
"untrusted-policy",
|
|
4163
4180
|
"verify-command",
|
|
4181
|
+
"verify-substage-evidence-path",
|
|
4164
4182
|
"working-directory"
|
|
4165
4183
|
],
|
|
4166
4184
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -4179,6 +4197,20 @@
|
|
|
4179
4197
|
"inputs": [],
|
|
4180
4198
|
"reverseAuditSource": ".github/workflows"
|
|
4181
4199
|
},
|
|
4200
|
+
{
|
|
4201
|
+
"id": "workflow:buildchain-dev-delivery",
|
|
4202
|
+
"name": "workflow:buildchain-dev-delivery",
|
|
4203
|
+
"kind": "workflow",
|
|
4204
|
+
"sourcePath": ".github/workflows/buildchain-dev-delivery.yml",
|
|
4205
|
+
"evidencePath": ".github/workflows/buildchain-dev-delivery.yml",
|
|
4206
|
+
"availability": "shipped",
|
|
4207
|
+
"visibility": "public",
|
|
4208
|
+
"participantFacing": true,
|
|
4209
|
+
"public": true,
|
|
4210
|
+
"inputCount": 0,
|
|
4211
|
+
"inputs": [],
|
|
4212
|
+
"reverseAuditSource": ".github/workflows"
|
|
4213
|
+
},
|
|
4182
4214
|
{
|
|
4183
4215
|
"id": "workflow:buildchain-patrol-daily",
|
|
4184
4216
|
"name": "workflow:buildchain-patrol-daily",
|
|
@@ -4360,6 +4392,61 @@
|
|
|
4360
4392
|
],
|
|
4361
4393
|
"reverseAuditSource": ".github/workflows"
|
|
4362
4394
|
},
|
|
4395
|
+
{
|
|
4396
|
+
"id": "workflow:dev-delivery-warrant-cancel",
|
|
4397
|
+
"name": "workflow:dev-delivery-warrant-cancel",
|
|
4398
|
+
"kind": "workflow",
|
|
4399
|
+
"sourcePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
|
|
4400
|
+
"evidencePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
|
|
4401
|
+
"availability": "shipped",
|
|
4402
|
+
"visibility": "public",
|
|
4403
|
+
"participantFacing": true,
|
|
4404
|
+
"public": true,
|
|
4405
|
+
"inputCount": 12,
|
|
4406
|
+
"inputs": [
|
|
4407
|
+
"buildchain-ref",
|
|
4408
|
+
"buildchain-repository",
|
|
4409
|
+
"event-action",
|
|
4410
|
+
"expected-candidate-id",
|
|
4411
|
+
"expected-old-state-root",
|
|
4412
|
+
"expected-pr-number",
|
|
4413
|
+
"expected-source-head-sha",
|
|
4414
|
+
"observed-source-head-sha",
|
|
4415
|
+
"outcome",
|
|
4416
|
+
"reason",
|
|
4417
|
+
"target-branch",
|
|
4418
|
+
"terminal-evidence-root"
|
|
4419
|
+
],
|
|
4420
|
+
"reverseAuditSource": ".github/workflows"
|
|
4421
|
+
},
|
|
4422
|
+
{
|
|
4423
|
+
"id": "workflow:dev-delivery-warrant-close",
|
|
4424
|
+
"name": "workflow:dev-delivery-warrant-close",
|
|
4425
|
+
"kind": "workflow",
|
|
4426
|
+
"sourcePath": ".github/workflows/dev-delivery-warrant-close.yml",
|
|
4427
|
+
"evidencePath": ".github/workflows/dev-delivery-warrant-close.yml",
|
|
4428
|
+
"availability": "shipped",
|
|
4429
|
+
"visibility": "public",
|
|
4430
|
+
"participantFacing": true,
|
|
4431
|
+
"public": true,
|
|
4432
|
+
"inputCount": 13,
|
|
4433
|
+
"inputs": [
|
|
4434
|
+
"buildchain-ref",
|
|
4435
|
+
"buildchain-repository",
|
|
4436
|
+
"current-base-sha",
|
|
4437
|
+
"expected-head-sha",
|
|
4438
|
+
"expected-pr-number",
|
|
4439
|
+
"merge-group-head-sha",
|
|
4440
|
+
"merge-group-tree-sha",
|
|
4441
|
+
"outcome",
|
|
4442
|
+
"reason",
|
|
4443
|
+
"replay-tree-sha",
|
|
4444
|
+
"required-context-roots-json",
|
|
4445
|
+
"target-branch",
|
|
4446
|
+
"terminal-evidence-root"
|
|
4447
|
+
],
|
|
4448
|
+
"reverseAuditSource": ".github/workflows"
|
|
4449
|
+
},
|
|
4363
4450
|
{
|
|
4364
4451
|
"id": "workflow:dev-merge-queue-governance",
|
|
4365
4452
|
"name": "workflow:dev-merge-queue-governance",
|
|
@@ -4384,22 +4471,40 @@
|
|
|
4384
4471
|
"visibility": "public",
|
|
4385
4472
|
"participantFacing": true,
|
|
4386
4473
|
"public": true,
|
|
4387
|
-
"inputCount":
|
|
4474
|
+
"inputCount": 32,
|
|
4388
4475
|
"inputs": [
|
|
4476
|
+
"affected-paths-json",
|
|
4389
4477
|
"allowed-head-prefixes",
|
|
4478
|
+
"assignment-root",
|
|
4390
4479
|
"block-labels",
|
|
4391
4480
|
"buildchain-ref",
|
|
4392
4481
|
"buildchain-repository",
|
|
4482
|
+
"closure-root",
|
|
4483
|
+
"delivery-class",
|
|
4484
|
+
"delivery-priority",
|
|
4485
|
+
"delivery-warrant-mode",
|
|
4486
|
+
"dependency-root",
|
|
4487
|
+
"diagnostic-context",
|
|
4393
4488
|
"dry-run",
|
|
4489
|
+
"expected-head-sha",
|
|
4490
|
+
"expected-pr-number",
|
|
4491
|
+
"initiative-root",
|
|
4394
4492
|
"landing-mode",
|
|
4395
4493
|
"max-merges",
|
|
4396
4494
|
"merge-method",
|
|
4495
|
+
"plan-root",
|
|
4496
|
+
"project-cut-proof-json",
|
|
4397
4497
|
"queue-admission-context",
|
|
4398
4498
|
"ready-label",
|
|
4399
4499
|
"require-approval",
|
|
4400
4500
|
"required-status-checks",
|
|
4401
4501
|
"same-repository-only",
|
|
4402
|
-
"
|
|
4502
|
+
"shard-evidence-roots-json",
|
|
4503
|
+
"source-identity-root",
|
|
4504
|
+
"source-patch-root",
|
|
4505
|
+
"target-branch",
|
|
4506
|
+
"toolchain-root",
|
|
4507
|
+
"warrant-lease-seconds"
|
|
4403
4508
|
],
|
|
4404
4509
|
"reverseAuditSource": ".github/workflows"
|
|
4405
4510
|
},
|
|
@@ -4717,7 +4822,7 @@
|
|
|
4717
4822
|
"visibility": "public",
|
|
4718
4823
|
"participantFacing": true,
|
|
4719
4824
|
"public": true,
|
|
4720
|
-
"inputCount":
|
|
4825
|
+
"inputCount": 89,
|
|
4721
4826
|
"inputs": [
|
|
4722
4827
|
"allow-repository",
|
|
4723
4828
|
"artifact-name",
|
|
@@ -4754,6 +4859,7 @@
|
|
|
4754
4859
|
"publication-control-plane-audit-json",
|
|
4755
4860
|
"publication-expected-json",
|
|
4756
4861
|
"publication-gate-aggregate-json",
|
|
4862
|
+
"publication-gate-command",
|
|
4757
4863
|
"publication-package-name",
|
|
4758
4864
|
"publication-product",
|
|
4759
4865
|
"publication-publisher-workflow-path",
|
|
@@ -4777,6 +4883,7 @@
|
|
|
4777
4883
|
"release-candidate-family-evidence-required",
|
|
4778
4884
|
"release-candidate-family-evidence-root",
|
|
4779
4885
|
"release-candidate-family-initiative-id",
|
|
4886
|
+
"release-candidate-wait-seconds",
|
|
4780
4887
|
"release-candidate-workflow-file",
|
|
4781
4888
|
"release-candidate-workflow-name",
|
|
4782
4889
|
"release-passport",
|
|
@@ -5200,7 +5307,7 @@
|
|
|
5200
5307
|
"visibility": "public",
|
|
5201
5308
|
"participantFacing": true,
|
|
5202
5309
|
"public": true,
|
|
5203
|
-
"inputCount":
|
|
5310
|
+
"inputCount": 22,
|
|
5204
5311
|
"inputs": [
|
|
5205
5312
|
"artifact-name",
|
|
5206
5313
|
"artifact-paths",
|
|
@@ -5221,6 +5328,7 @@
|
|
|
5221
5328
|
"required",
|
|
5222
5329
|
"sample-process-tree",
|
|
5223
5330
|
"stage",
|
|
5331
|
+
"substage-evidence-path",
|
|
5224
5332
|
"summary-path",
|
|
5225
5333
|
"timeout-minutes"
|
|
5226
5334
|
],
|
|
@@ -5592,6 +5700,18 @@
|
|
|
5592
5700
|
"public": true,
|
|
5593
5701
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5594
5702
|
},
|
|
5703
|
+
{
|
|
5704
|
+
"id": "site-page:manual:dev-delivery-warrant",
|
|
5705
|
+
"name": "site-page:manual:dev-delivery-warrant",
|
|
5706
|
+
"kind": "site-page",
|
|
5707
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5708
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5709
|
+
"availability": "shipped",
|
|
5710
|
+
"visibility": "public",
|
|
5711
|
+
"participantFacing": true,
|
|
5712
|
+
"public": true,
|
|
5713
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5714
|
+
},
|
|
5595
5715
|
{
|
|
5596
5716
|
"id": "site-page:manual:dev-qualification-patrol",
|
|
5597
5717
|
"name": "site-page:manual:dev-qualification-patrol",
|
|
@@ -6183,6 +6303,6 @@
|
|
|
6183
6303
|
}
|
|
6184
6304
|
}
|
|
6185
6305
|
],
|
|
6186
|
-
"publicSurfaceCount":
|
|
6306
|
+
"publicSurfaceCount": 399
|
|
6187
6307
|
}
|
|
6188
6308
|
}
|
|
@@ -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:d76416d8cd04dcdb560b7d06fef287fa22d6b186a729cb92cd4cf71cebbac1e9",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"title": "Auditable demo artifact pipeline",
|
|
38
38
|
"path": "docs/auditable-demo.md",
|
|
39
39
|
"plane": "verify",
|
|
40
|
-
"digest": "sha256:
|
|
40
|
+
"digest": "sha256:c49e734fdfe3b74d317e23a523e198f1194b2c7cd16cca87e8e3a3ffc7bf589f",
|
|
41
41
|
"capabilityGroup": "reusable-build",
|
|
42
42
|
"audience": [
|
|
43
43
|
"consumer",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"title": "Sealed publication authority",
|
|
108
108
|
"path": "docs/publication-authority.md",
|
|
109
109
|
"plane": "verify",
|
|
110
|
-
"digest": "sha256:
|
|
110
|
+
"digest": "sha256:a1650158943d95b979d164ca98a73d7919fda577d648e4a4a9d04588ec698796",
|
|
111
111
|
"capabilityGroup": "release-passport-trust",
|
|
112
112
|
"audience": [
|
|
113
113
|
"release-operator",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"title": "Release Candidate Passport",
|
|
137
137
|
"path": "docs/release-candidate.md",
|
|
138
138
|
"plane": "verify",
|
|
139
|
-
"digest": "sha256:
|
|
139
|
+
"digest": "sha256:48e42e92174b1091e8ff32e876099f092ca12ce886d3382f019f0ccd907f1c9b",
|
|
140
140
|
"capabilityGroup": "reusable-build",
|
|
141
141
|
"audience": [
|
|
142
142
|
"release-operator",
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"title": "Generated CLI reference",
|
|
318
318
|
"path": "docs/cli-reference.md",
|
|
319
319
|
"plane": "use",
|
|
320
|
-
"digest": "sha256:
|
|
320
|
+
"digest": "sha256:2365e125d38e43b68a4af277a91be7aca708a8bf785954ed4589dbd9a5d8db97",
|
|
321
321
|
"capabilityGroup": "api-cli-reference",
|
|
322
322
|
"audience": [
|
|
323
323
|
"agent",
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"title": "Generated Node API reference",
|
|
333
333
|
"path": "docs/node-api-reference.md",
|
|
334
334
|
"plane": "use",
|
|
335
|
-
"digest": "sha256:
|
|
335
|
+
"digest": "sha256:e0e720eeacfa61a1ca235142858f544e18d3f7a000e300a4311e246fe738ff81",
|
|
336
336
|
"capabilityGroup": "api-cli-reference",
|
|
337
337
|
"audience": [
|
|
338
338
|
"agent",
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"title": "Reusable build surface",
|
|
404
404
|
"path": "docs/reusable-build-surface.md",
|
|
405
405
|
"plane": "use",
|
|
406
|
-
"digest": "sha256:
|
|
406
|
+
"digest": "sha256:7bc04f658d7e298872756278c60143d8edf5dfb841d0b0d3ea62af8028735b54",
|
|
407
407
|
"capabilityGroup": "reusable-build",
|
|
408
408
|
"audience": [
|
|
409
409
|
"consumer",
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
"title": "Release governance",
|
|
431
431
|
"path": "docs/release-governance.md",
|
|
432
432
|
"plane": "why",
|
|
433
|
-
"digest": "sha256:
|
|
433
|
+
"digest": "sha256:481640f398d966dca4f1f2e29a8100f0f479315ee19e65b0e259720f2b61213f",
|
|
434
434
|
"capabilityGroup": "governance-versioning",
|
|
435
435
|
"audience": [
|
|
436
436
|
"maintainer",
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
"title": "Versioning",
|
|
473
473
|
"path": "docs/versioning.md",
|
|
474
474
|
"plane": "why",
|
|
475
|
-
"digest": "sha256:
|
|
475
|
+
"digest": "sha256:793db9414d11aeb314ff2d37a52481826ca5f636d08eaf93772d37962a51484f",
|
|
476
476
|
"capabilityGroup": "governance-versioning",
|
|
477
477
|
"audience": [
|
|
478
478
|
"maintainer"
|