@kungfu-tech/buildchain 3.0.6-alpha.1 → 3.0.6-alpha.3
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/contracts/release-candidate-recovery-v1.schema.json +102 -0
- package/dist/site/buildchain-contract.json +129 -34
- package/dist/site/buildchain-site.json +171 -45
- package/dist/site/capability-registry.json +5 -5
- package/dist/site/cli-registry.json +40 -4
- package/dist/site/controller-registry.json +56 -4
- package/dist/site/kfd-claims.json +184 -20
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +10 -10
- package/dist/site/node-api-registry.json +1242 -121
- package/dist/site/page-registry.json +157 -31
- package/dist/site/public-surface-audit.json +422 -21
- package/dist/site/publication-authority-registry.json +66 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +2 -0
- package/dist/site/site-manifest.json +14 -14
- package/dist/site/workflow-registry.json +197 -15
- 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 +96 -38
- package/docs/publication-authority.md +11 -0
- package/docs/publish-transaction.md +10 -1
- package/docs/release-candidate.md +106 -12
- 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 +3 -1
- package/packages/core/buildchain-contract.js +30 -2
- 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/packages/core/index.js +7 -0
- package/packages/core/release-candidate-recovery.js +386 -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 +13 -2
- 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/release-candidate-resolver.mjs +35 -3
- package/scripts/resolve-artifact-transfer-mode.mjs +9 -0
- package/scripts/resolve-build-contract.mjs +7 -0
- package/scripts/resume-from-candidate-run.mjs +498 -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 +15 -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,
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"manualCount": 5,
|
|
52
52
|
"pageCount": 5,
|
|
53
53
|
"cliCommandCount": 25,
|
|
54
|
-
"nodeApiCount":
|
|
54
|
+
"nodeApiCount": 12,
|
|
55
55
|
"workflowCount": 3,
|
|
56
56
|
"actionCount": 2
|
|
57
57
|
},
|
|
@@ -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": [
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
"pageCount": 10,
|
|
293
293
|
"cliCommandCount": 0,
|
|
294
294
|
"nodeApiCount": 2,
|
|
295
|
-
"workflowCount":
|
|
295
|
+
"workflowCount": 40,
|
|
296
296
|
"actionCount": 1
|
|
297
297
|
},
|
|
298
298
|
"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"
|
|
@@ -2075,6 +2091,42 @@
|
|
|
2075
2091
|
"classification": "included",
|
|
2076
2092
|
"source": "workflow-call-input"
|
|
2077
2093
|
},
|
|
2094
|
+
"resume-buildchain-runtime-sha": {
|
|
2095
|
+
"classification": "included",
|
|
2096
|
+
"source": "workflow-call-input"
|
|
2097
|
+
},
|
|
2098
|
+
"resume-candidate-repository": {
|
|
2099
|
+
"classification": "included",
|
|
2100
|
+
"source": "workflow-call-input"
|
|
2101
|
+
},
|
|
2102
|
+
"resume-candidate-run-id": {
|
|
2103
|
+
"classification": "included",
|
|
2104
|
+
"source": "workflow-call-input"
|
|
2105
|
+
},
|
|
2106
|
+
"resume-expected-candidate-root": {
|
|
2107
|
+
"classification": "included",
|
|
2108
|
+
"source": "workflow-call-input"
|
|
2109
|
+
},
|
|
2110
|
+
"resume-expected-candidate-runtime-sha": {
|
|
2111
|
+
"classification": "included",
|
|
2112
|
+
"source": "workflow-call-input"
|
|
2113
|
+
},
|
|
2114
|
+
"resume-expected-source-tree": {
|
|
2115
|
+
"classification": "included",
|
|
2116
|
+
"source": "workflow-call-input"
|
|
2117
|
+
},
|
|
2118
|
+
"resume-expected-workflow-file": {
|
|
2119
|
+
"classification": "included",
|
|
2120
|
+
"source": "workflow-call-input"
|
|
2121
|
+
},
|
|
2122
|
+
"resume-expected-workflow-name": {
|
|
2123
|
+
"classification": "included",
|
|
2124
|
+
"source": "workflow-call-input"
|
|
2125
|
+
},
|
|
2126
|
+
"resume-transaction-id": {
|
|
2127
|
+
"classification": "included",
|
|
2128
|
+
"source": "workflow-call-input"
|
|
2129
|
+
},
|
|
2078
2130
|
"runner-preset": {
|
|
2079
2131
|
"classification": "digest-only",
|
|
2080
2132
|
"source": "workflow-call-input"
|
|
@@ -2137,7 +2189,7 @@
|
|
|
2137
2189
|
"controller-receipt"
|
|
2138
2190
|
]
|
|
2139
2191
|
},
|
|
2140
|
-
"digest": "sha256:
|
|
2192
|
+
"digest": "sha256:bc03b3ac295e33b738fe5168e14ebf4d0fabf2325b4ae4a3d2b3c12afe816068"
|
|
2141
2193
|
},
|
|
2142
2194
|
{
|
|
2143
2195
|
"schemaVersion": 1,
|
|
@@ -2330,5 +2382,5 @@
|
|
|
2330
2382
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
2331
2383
|
}
|
|
2332
2384
|
],
|
|
2333
|
-
"digest": "sha256:
|
|
2385
|
+
"digest": "sha256:cc205cd0abe4ba5023d8afc38dea9d3f17c06f4a3622a6b8ccd3fc90b10e3fb7"
|
|
2334
2386
|
}
|
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:80cfdf1786019217c439810f1a80d2866bf8f7ef35a6fa569e1a687fb2bf4cbe",
|
|
18
18
|
"majorLine": "v3"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
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": "0bf7f1ba89493e333e8eaf266373f7fefb11c0c7d3b3e7dd7a98d753695e02d5",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 112,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 64,
|
|
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": "0bf7f1ba89493e333e8eaf266373f7fefb11c0c7d3b3e7dd7a98d753695e02d5",
|
|
250
250
|
"summary": {
|
|
251
251
|
"cliCommandCount": 112,
|
|
252
|
-
"workflowCount":
|
|
252
|
+
"workflowCount": 64,
|
|
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",
|
|
@@ -1616,6 +1628,18 @@
|
|
|
1616
1628
|
"public": true,
|
|
1617
1629
|
"packageExport": "./release-candidate"
|
|
1618
1630
|
},
|
|
1631
|
+
{
|
|
1632
|
+
"id": "export:./release-candidate-recovery",
|
|
1633
|
+
"name": "@kungfu-tech/buildchain/release-candidate-recovery",
|
|
1634
|
+
"kind": "package-export",
|
|
1635
|
+
"sourcePath": "packages/core/release-candidate-recovery.js",
|
|
1636
|
+
"evidencePath": "packages/core/release-candidate-recovery.js",
|
|
1637
|
+
"availability": "shipped",
|
|
1638
|
+
"visibility": "public",
|
|
1639
|
+
"participantFacing": true,
|
|
1640
|
+
"public": true,
|
|
1641
|
+
"packageExport": "./release-candidate-recovery"
|
|
1642
|
+
},
|
|
1619
1643
|
{
|
|
1620
1644
|
"id": "export:./stable-candidate-ledger",
|
|
1621
1645
|
"name": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
@@ -2046,7 +2070,7 @@
|
|
|
2046
2070
|
},
|
|
2047
2071
|
{
|
|
2048
2072
|
"id": "cli:dev",
|
|
2049
|
-
"name": "buildchain dev
|
|
2073
|
+
"name": "buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M>",
|
|
2050
2074
|
"kind": "cli-command",
|
|
2051
2075
|
"sourcePath": "bin/buildchain.mjs",
|
|
2052
2076
|
"evidencePath": "bin/buildchain.mjs",
|
|
@@ -3334,7 +3358,7 @@
|
|
|
3334
3358
|
"visibility": "public",
|
|
3335
3359
|
"participantFacing": true,
|
|
3336
3360
|
"public": true,
|
|
3337
|
-
"inputCount":
|
|
3361
|
+
"inputCount": 86,
|
|
3338
3362
|
"inputs": [
|
|
3339
3363
|
"artifact-compression-level",
|
|
3340
3364
|
"artifact-name",
|
|
@@ -3420,6 +3444,7 @@
|
|
|
3420
3444
|
"shifu-cache-profile-ref",
|
|
3421
3445
|
"untrusted-policy",
|
|
3422
3446
|
"verify-command",
|
|
3447
|
+
"verify-substage-evidence-path",
|
|
3423
3448
|
"working-directory"
|
|
3424
3449
|
],
|
|
3425
3450
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -3448,7 +3473,7 @@
|
|
|
3448
3473
|
"visibility": "public",
|
|
3449
3474
|
"participantFacing": true,
|
|
3450
3475
|
"public": true,
|
|
3451
|
-
"inputCount":
|
|
3476
|
+
"inputCount": 12,
|
|
3452
3477
|
"inputs": [
|
|
3453
3478
|
"artifact-retention-days",
|
|
3454
3479
|
"binary-artifact-digest",
|
|
@@ -3457,6 +3482,7 @@
|
|
|
3457
3482
|
"materialize",
|
|
3458
3483
|
"materialize-base-ref",
|
|
3459
3484
|
"media-profile",
|
|
3485
|
+
"render-failure-advisory",
|
|
3460
3486
|
"render-media",
|
|
3461
3487
|
"renderer-image",
|
|
3462
3488
|
"scenario-path",
|
|
@@ -3519,7 +3545,7 @@
|
|
|
3519
3545
|
"visibility": "public",
|
|
3520
3546
|
"participantFacing": true,
|
|
3521
3547
|
"public": true,
|
|
3522
|
-
"inputCount":
|
|
3548
|
+
"inputCount": 34,
|
|
3523
3549
|
"inputs": [
|
|
3524
3550
|
"admission-json",
|
|
3525
3551
|
"authority-workflow-path",
|
|
@@ -3528,6 +3554,7 @@
|
|
|
3528
3554
|
"auto-no-gate",
|
|
3529
3555
|
"buildchain-ref",
|
|
3530
3556
|
"buildchain-repository",
|
|
3557
|
+
"consumer-gate-command",
|
|
3531
3558
|
"consumer-predicate-digest",
|
|
3532
3559
|
"consumer-predicate-id",
|
|
3533
3560
|
"consumer-qualification-required",
|
|
@@ -3567,7 +3594,7 @@
|
|
|
3567
3594
|
"visibility": "public",
|
|
3568
3595
|
"participantFacing": true,
|
|
3569
3596
|
"public": true,
|
|
3570
|
-
"inputCount":
|
|
3597
|
+
"inputCount": 106,
|
|
3571
3598
|
"inputs": [
|
|
3572
3599
|
"allow-repository",
|
|
3573
3600
|
"artifact-name",
|
|
@@ -3612,6 +3639,7 @@
|
|
|
3612
3639
|
"publication-control-plane-audit-json",
|
|
3613
3640
|
"publication-expected-json",
|
|
3614
3641
|
"publication-gate-aggregate-json",
|
|
3642
|
+
"publication-gate-command",
|
|
3615
3643
|
"publication-package-name",
|
|
3616
3644
|
"publication-product",
|
|
3617
3645
|
"publication-publisher-workflow-path",
|
|
@@ -3635,6 +3663,7 @@
|
|
|
3635
3663
|
"release-candidate-family-evidence-required",
|
|
3636
3664
|
"release-candidate-family-evidence-root",
|
|
3637
3665
|
"release-candidate-family-initiative-id",
|
|
3666
|
+
"release-candidate-wait-seconds",
|
|
3638
3667
|
"release-candidate-workflow-file",
|
|
3639
3668
|
"release-candidate-workflow-name",
|
|
3640
3669
|
"release-passport",
|
|
@@ -3659,6 +3688,15 @@
|
|
|
3659
3688
|
"release-propagation-config-path",
|
|
3660
3689
|
"required-artifact-count",
|
|
3661
3690
|
"required-status-check",
|
|
3691
|
+
"resume-buildchain-runtime-sha",
|
|
3692
|
+
"resume-candidate-repository",
|
|
3693
|
+
"resume-candidate-run-id",
|
|
3694
|
+
"resume-expected-candidate-root",
|
|
3695
|
+
"resume-expected-candidate-runtime-sha",
|
|
3696
|
+
"resume-expected-source-tree",
|
|
3697
|
+
"resume-expected-workflow-file",
|
|
3698
|
+
"resume-expected-workflow-name",
|
|
3699
|
+
"resume-transaction-id",
|
|
3662
3700
|
"runner-preset",
|
|
3663
3701
|
"standalone-binary-distribution",
|
|
3664
3702
|
"target-ref",
|
|
@@ -4072,7 +4110,7 @@
|
|
|
4072
4110
|
"visibility": "public",
|
|
4073
4111
|
"participantFacing": true,
|
|
4074
4112
|
"public": true,
|
|
4075
|
-
"inputCount":
|
|
4113
|
+
"inputCount": 89,
|
|
4076
4114
|
"inputs": [
|
|
4077
4115
|
"artifact-compression-level",
|
|
4078
4116
|
"artifact-name",
|
|
@@ -4161,6 +4199,7 @@
|
|
|
4161
4199
|
"shifu-cache-profile-ref",
|
|
4162
4200
|
"untrusted-policy",
|
|
4163
4201
|
"verify-command",
|
|
4202
|
+
"verify-substage-evidence-path",
|
|
4164
4203
|
"working-directory"
|
|
4165
4204
|
],
|
|
4166
4205
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -4179,6 +4218,34 @@
|
|
|
4179
4218
|
"inputs": [],
|
|
4180
4219
|
"reverseAuditSource": ".github/workflows"
|
|
4181
4220
|
},
|
|
4221
|
+
{
|
|
4222
|
+
"id": "workflow:buildchain-candidate-recovery-dogfood-failure",
|
|
4223
|
+
"name": "workflow:buildchain-candidate-recovery-dogfood-failure",
|
|
4224
|
+
"kind": "workflow",
|
|
4225
|
+
"sourcePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
4226
|
+
"evidencePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
4227
|
+
"availability": "shipped",
|
|
4228
|
+
"visibility": "public",
|
|
4229
|
+
"participantFacing": true,
|
|
4230
|
+
"public": true,
|
|
4231
|
+
"inputCount": 0,
|
|
4232
|
+
"inputs": [],
|
|
4233
|
+
"reverseAuditSource": ".github/workflows"
|
|
4234
|
+
},
|
|
4235
|
+
{
|
|
4236
|
+
"id": "workflow:buildchain-dev-delivery",
|
|
4237
|
+
"name": "workflow:buildchain-dev-delivery",
|
|
4238
|
+
"kind": "workflow",
|
|
4239
|
+
"sourcePath": ".github/workflows/buildchain-dev-delivery.yml",
|
|
4240
|
+
"evidencePath": ".github/workflows/buildchain-dev-delivery.yml",
|
|
4241
|
+
"availability": "shipped",
|
|
4242
|
+
"visibility": "public",
|
|
4243
|
+
"participantFacing": true,
|
|
4244
|
+
"public": true,
|
|
4245
|
+
"inputCount": 0,
|
|
4246
|
+
"inputs": [],
|
|
4247
|
+
"reverseAuditSource": ".github/workflows"
|
|
4248
|
+
},
|
|
4182
4249
|
{
|
|
4183
4250
|
"id": "workflow:buildchain-patrol-daily",
|
|
4184
4251
|
"name": "workflow:buildchain-patrol-daily",
|
|
@@ -4360,6 +4427,61 @@
|
|
|
4360
4427
|
],
|
|
4361
4428
|
"reverseAuditSource": ".github/workflows"
|
|
4362
4429
|
},
|
|
4430
|
+
{
|
|
4431
|
+
"id": "workflow:dev-delivery-warrant-cancel",
|
|
4432
|
+
"name": "workflow:dev-delivery-warrant-cancel",
|
|
4433
|
+
"kind": "workflow",
|
|
4434
|
+
"sourcePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
|
|
4435
|
+
"evidencePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
|
|
4436
|
+
"availability": "shipped",
|
|
4437
|
+
"visibility": "public",
|
|
4438
|
+
"participantFacing": true,
|
|
4439
|
+
"public": true,
|
|
4440
|
+
"inputCount": 12,
|
|
4441
|
+
"inputs": [
|
|
4442
|
+
"buildchain-ref",
|
|
4443
|
+
"buildchain-repository",
|
|
4444
|
+
"event-action",
|
|
4445
|
+
"expected-candidate-id",
|
|
4446
|
+
"expected-old-state-root",
|
|
4447
|
+
"expected-pr-number",
|
|
4448
|
+
"expected-source-head-sha",
|
|
4449
|
+
"observed-source-head-sha",
|
|
4450
|
+
"outcome",
|
|
4451
|
+
"reason",
|
|
4452
|
+
"target-branch",
|
|
4453
|
+
"terminal-evidence-root"
|
|
4454
|
+
],
|
|
4455
|
+
"reverseAuditSource": ".github/workflows"
|
|
4456
|
+
},
|
|
4457
|
+
{
|
|
4458
|
+
"id": "workflow:dev-delivery-warrant-close",
|
|
4459
|
+
"name": "workflow:dev-delivery-warrant-close",
|
|
4460
|
+
"kind": "workflow",
|
|
4461
|
+
"sourcePath": ".github/workflows/dev-delivery-warrant-close.yml",
|
|
4462
|
+
"evidencePath": ".github/workflows/dev-delivery-warrant-close.yml",
|
|
4463
|
+
"availability": "shipped",
|
|
4464
|
+
"visibility": "public",
|
|
4465
|
+
"participantFacing": true,
|
|
4466
|
+
"public": true,
|
|
4467
|
+
"inputCount": 13,
|
|
4468
|
+
"inputs": [
|
|
4469
|
+
"buildchain-ref",
|
|
4470
|
+
"buildchain-repository",
|
|
4471
|
+
"current-base-sha",
|
|
4472
|
+
"expected-head-sha",
|
|
4473
|
+
"expected-pr-number",
|
|
4474
|
+
"merge-group-head-sha",
|
|
4475
|
+
"merge-group-tree-sha",
|
|
4476
|
+
"outcome",
|
|
4477
|
+
"reason",
|
|
4478
|
+
"replay-tree-sha",
|
|
4479
|
+
"required-context-roots-json",
|
|
4480
|
+
"target-branch",
|
|
4481
|
+
"terminal-evidence-root"
|
|
4482
|
+
],
|
|
4483
|
+
"reverseAuditSource": ".github/workflows"
|
|
4484
|
+
},
|
|
4363
4485
|
{
|
|
4364
4486
|
"id": "workflow:dev-merge-queue-governance",
|
|
4365
4487
|
"name": "workflow:dev-merge-queue-governance",
|
|
@@ -4384,22 +4506,40 @@
|
|
|
4384
4506
|
"visibility": "public",
|
|
4385
4507
|
"participantFacing": true,
|
|
4386
4508
|
"public": true,
|
|
4387
|
-
"inputCount":
|
|
4509
|
+
"inputCount": 32,
|
|
4388
4510
|
"inputs": [
|
|
4511
|
+
"affected-paths-json",
|
|
4389
4512
|
"allowed-head-prefixes",
|
|
4513
|
+
"assignment-root",
|
|
4390
4514
|
"block-labels",
|
|
4391
4515
|
"buildchain-ref",
|
|
4392
4516
|
"buildchain-repository",
|
|
4517
|
+
"closure-root",
|
|
4518
|
+
"delivery-class",
|
|
4519
|
+
"delivery-priority",
|
|
4520
|
+
"delivery-warrant-mode",
|
|
4521
|
+
"dependency-root",
|
|
4522
|
+
"diagnostic-context",
|
|
4393
4523
|
"dry-run",
|
|
4524
|
+
"expected-head-sha",
|
|
4525
|
+
"expected-pr-number",
|
|
4526
|
+
"initiative-root",
|
|
4394
4527
|
"landing-mode",
|
|
4395
4528
|
"max-merges",
|
|
4396
4529
|
"merge-method",
|
|
4530
|
+
"plan-root",
|
|
4531
|
+
"project-cut-proof-json",
|
|
4397
4532
|
"queue-admission-context",
|
|
4398
4533
|
"ready-label",
|
|
4399
4534
|
"require-approval",
|
|
4400
4535
|
"required-status-checks",
|
|
4401
4536
|
"same-repository-only",
|
|
4402
|
-
"
|
|
4537
|
+
"shard-evidence-roots-json",
|
|
4538
|
+
"source-identity-root",
|
|
4539
|
+
"source-patch-root",
|
|
4540
|
+
"target-branch",
|
|
4541
|
+
"toolchain-root",
|
|
4542
|
+
"warrant-lease-seconds"
|
|
4403
4543
|
],
|
|
4404
4544
|
"reverseAuditSource": ".github/workflows"
|
|
4405
4545
|
},
|
|
@@ -4717,7 +4857,7 @@
|
|
|
4717
4857
|
"visibility": "public",
|
|
4718
4858
|
"participantFacing": true,
|
|
4719
4859
|
"public": true,
|
|
4720
|
-
"inputCount":
|
|
4860
|
+
"inputCount": 98,
|
|
4721
4861
|
"inputs": [
|
|
4722
4862
|
"allow-repository",
|
|
4723
4863
|
"artifact-name",
|
|
@@ -4754,6 +4894,7 @@
|
|
|
4754
4894
|
"publication-control-plane-audit-json",
|
|
4755
4895
|
"publication-expected-json",
|
|
4756
4896
|
"publication-gate-aggregate-json",
|
|
4897
|
+
"publication-gate-command",
|
|
4757
4898
|
"publication-package-name",
|
|
4758
4899
|
"publication-product",
|
|
4759
4900
|
"publication-publisher-workflow-path",
|
|
@@ -4777,6 +4918,7 @@
|
|
|
4777
4918
|
"release-candidate-family-evidence-required",
|
|
4778
4919
|
"release-candidate-family-evidence-root",
|
|
4779
4920
|
"release-candidate-family-initiative-id",
|
|
4921
|
+
"release-candidate-wait-seconds",
|
|
4780
4922
|
"release-candidate-workflow-file",
|
|
4781
4923
|
"release-candidate-workflow-name",
|
|
4782
4924
|
"release-passport",
|
|
@@ -4801,6 +4943,15 @@
|
|
|
4801
4943
|
"release-propagation-config-path",
|
|
4802
4944
|
"required-artifact-count",
|
|
4803
4945
|
"required-status-check",
|
|
4946
|
+
"resume-buildchain-runtime-sha",
|
|
4947
|
+
"resume-candidate-repository",
|
|
4948
|
+
"resume-candidate-run-id",
|
|
4949
|
+
"resume-expected-candidate-root",
|
|
4950
|
+
"resume-expected-candidate-runtime-sha",
|
|
4951
|
+
"resume-expected-source-tree",
|
|
4952
|
+
"resume-expected-workflow-file",
|
|
4953
|
+
"resume-expected-workflow-name",
|
|
4954
|
+
"resume-transaction-id",
|
|
4804
4955
|
"runner-preset",
|
|
4805
4956
|
"standalone-binary-distribution",
|
|
4806
4957
|
"target-ref",
|
|
@@ -5200,7 +5351,7 @@
|
|
|
5200
5351
|
"visibility": "public",
|
|
5201
5352
|
"participantFacing": true,
|
|
5202
5353
|
"public": true,
|
|
5203
|
-
"inputCount":
|
|
5354
|
+
"inputCount": 22,
|
|
5204
5355
|
"inputs": [
|
|
5205
5356
|
"artifact-name",
|
|
5206
5357
|
"artifact-paths",
|
|
@@ -5221,6 +5372,7 @@
|
|
|
5221
5372
|
"required",
|
|
5222
5373
|
"sample-process-tree",
|
|
5223
5374
|
"stage",
|
|
5375
|
+
"substage-evidence-path",
|
|
5224
5376
|
"summary-path",
|
|
5225
5377
|
"timeout-minutes"
|
|
5226
5378
|
],
|
|
@@ -5592,6 +5744,18 @@
|
|
|
5592
5744
|
"public": true,
|
|
5593
5745
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5594
5746
|
},
|
|
5747
|
+
{
|
|
5748
|
+
"id": "site-page:manual:dev-delivery-warrant",
|
|
5749
|
+
"name": "site-page:manual:dev-delivery-warrant",
|
|
5750
|
+
"kind": "site-page",
|
|
5751
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5752
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5753
|
+
"availability": "shipped",
|
|
5754
|
+
"visibility": "public",
|
|
5755
|
+
"participantFacing": true,
|
|
5756
|
+
"public": true,
|
|
5757
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5758
|
+
},
|
|
5595
5759
|
{
|
|
5596
5760
|
"id": "site-page:manual:dev-qualification-patrol",
|
|
5597
5761
|
"name": "site-page:manual:dev-qualification-patrol",
|
|
@@ -6183,6 +6347,6 @@
|
|
|
6183
6347
|
}
|
|
6184
6348
|
}
|
|
6185
6349
|
],
|
|
6186
|
-
"publicSurfaceCount":
|
|
6350
|
+
"publicSurfaceCount": 401
|
|
6187
6351
|
}
|
|
6188
6352
|
}
|