@kungfu-tech/buildchain 3.0.6 → 3.0.7-alpha.1
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 -2
- package/actions/promote-buildchain-ref/README.md +10 -0
- package/actions/release-tail/README.md +17 -0
- package/bin/buildchain.mjs +11 -0
- package/bin/internal/command-registry.mjs +2 -0
- package/contracts/auditable-demo-scenario-v1.schema.json +1 -1
- package/contracts/engineering-housekeeper-v1.schema.json +143 -0
- package/contracts/fixtures/engineering-housekeeper-v1/cases.json +68 -0
- package/contracts/fixtures/release-tail-capabilities-v1/kungfu-alpha.json +273 -0
- package/contracts/publication-rehearsal-capsule-v1.schema.json +173 -0
- package/contracts/release-tail-capabilities-v1.schema.json +199 -0
- package/contracts/release-tail-provider-bindings-v1.schema.json +56 -0
- package/dist/site/agent-index.json +3 -0
- package/dist/site/artifact-schemas.json +6 -0
- package/dist/site/buildchain-contract.json +42 -27
- package/dist/site/buildchain-site.json +384 -33
- package/dist/site/capability-registry.json +15 -12
- package/dist/site/cli-registry.json +102 -0
- package/dist/site/controller-registry.json +19 -3
- package/dist/site/kfd-claims.json +359 -17
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +53 -7
- package/dist/site/node-api-registry.json +5882 -3605
- package/dist/site/page-registry.json +348 -21
- package/dist/site/public-surface-audit.json +396 -16
- package/dist/site/publication-authority-registry.json +106 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +7 -0
- package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +269 -0
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +353 -0
- package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +94 -0
- package/dist/site/site-manifest.json +35 -11
- package/dist/site/workflow-registry.json +204 -10
- package/docs/MAP.md +6 -2
- package/docs/auditable-demo.md +2 -2
- package/docs/cli-reference.md +136 -0
- package/docs/dev-delivery-warrant.md +49 -4
- package/docs/engineering-housekeeper.md +138 -0
- package/docs/lifecycle-protocol.md +4 -2
- package/docs/node-api-reference.md +495 -281
- package/docs/publication-rehearsal.md +94 -0
- package/docs/release-governance.md +17 -2
- package/docs/release-tail-contract.md +160 -0
- package/docs/release-tail-provider-plane.md +120 -0
- package/docs/reusable-build-surface.md +11 -0
- package/package.json +11 -3
- package/packages/core/artifact-signing.js +61 -0
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-config.js +66 -6
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/buildchain-publication-authority.js +5 -0
- package/packages/core/controller-evidence.js +2 -1
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-shadow.js +502 -0
- package/packages/core/dev-delivery-warrant.js +15 -6
- package/packages/core/diagnostics.js +8 -3
- package/packages/core/engineering-housekeeper-github-client.js +222 -0
- package/packages/core/engineering-housekeeper-github.js +501 -0
- package/packages/core/engineering-housekeeper.js +259 -0
- package/packages/core/index.js +42 -0
- package/packages/core/kfd-gate.js +45 -15
- package/packages/core/paper-agent-entry.js +11 -5
- package/packages/core/paper-repository.js +1 -0
- package/packages/core/paper-scaffold-content.js +21 -0
- package/packages/core/paper.js +28 -2
- package/packages/core/publication-rehearsal-projection.js +173 -0
- package/packages/core/publication-rehearsal-runtime.js +921 -0
- package/packages/core/release-passport.js +130 -20
- package/packages/core/release-tail-compatibility.js +60 -0
- package/packages/core/release-tail-provider-adapters.js +461 -0
- package/packages/core/release-tail-provider-plane.js +1228 -0
- package/scripts/assemble-publication-artifact-admission.mjs +1 -1
- package/scripts/assemble-self-publication-admission.mjs +2 -2
- package/scripts/audit-publication-control-plane.mjs +1 -1
- package/scripts/auditable-demo-bundle-verification.mjs +2 -3
- package/scripts/auditable-demo-platform.mjs +2 -2
- package/scripts/auditable-demo-renditions.mjs +1 -1
- package/scripts/auditable-demo.mjs +2 -2
- package/scripts/build-contract-core.mjs +8 -3
- package/scripts/build-standalone-binary.mjs +14 -3
- package/scripts/buildchain-cli-help.mjs +13 -0
- package/scripts/check-core-mechanism-inventory.mjs +347 -0
- package/scripts/check-inventory.mjs +10 -8
- package/scripts/check-maintainability.mjs +9 -2
- package/scripts/check-release-tail-contract.mjs +435 -0
- package/scripts/dev-delivery-warrant.mjs +31 -4
- package/scripts/dev-pr-auto-merge.mjs +30 -4
- package/scripts/dev-pr-delivery-warrant.mjs +50 -0
- package/scripts/engineering-housekeeper-workflow.mjs +394 -0
- package/scripts/generate-channel-promotion-workflow.mjs +10 -8
- package/scripts/generate-site-bundle.mjs +47 -4
- package/scripts/init-repo.mjs +26 -2
- package/scripts/inspect-artifact-signing-requests.mjs +6 -0
- package/scripts/materialize-self-release-candidate-version.mjs +137 -0
- package/scripts/publication-commit-evidence.mjs +69 -23
- package/scripts/release-candidate-resolver.mjs +16 -10
- package/scripts/release-tail.mjs +159 -0
- package/scripts/resume-from-candidate-run.mjs +123 -9
- package/scripts/seal-artifact-signing-requests.mjs +6 -0
- package/scripts/site-capability-metadata.mjs +13 -0
- package/scripts/v4-architecture.mjs +600 -0
- package/scripts/web-surface-core.mjs +8 -2
- package/scripts/workflow-call-contract.mjs +184 -5
|
@@ -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": "03245581cd122f257e5effc9a87571c0941a2e597cd4fe35ed9d9eaf3c1cda8a",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
28
|
-
"actionCount":
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
26
|
+
"cliCommandCount": 114,
|
|
27
|
+
"workflowCount": 69,
|
|
28
|
+
"actionCount": 7,
|
|
29
|
+
"sitePageCount": 70,
|
|
30
|
+
"docCommandRefCount": 924,
|
|
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": "03245581cd122f257e5effc9a87571c0941a2e597cd4fe35ed9d9eaf3c1cda8a",
|
|
250
250
|
"summary": {
|
|
251
|
-
"cliCommandCount":
|
|
252
|
-
"workflowCount":
|
|
253
|
-
"actionCount":
|
|
254
|
-
"sitePageCount":
|
|
255
|
-
"docCommandRefCount":
|
|
251
|
+
"cliCommandCount": 114,
|
|
252
|
+
"workflowCount": 69,
|
|
253
|
+
"actionCount": 7,
|
|
254
|
+
"sitePageCount": 70,
|
|
255
|
+
"docCommandRefCount": 924,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -332,6 +332,18 @@
|
|
|
332
332
|
"public": true,
|
|
333
333
|
"plane": "action"
|
|
334
334
|
},
|
|
335
|
+
{
|
|
336
|
+
"id": "doc:actions/release-tail/README.md",
|
|
337
|
+
"name": "actions/release-tail/README.md",
|
|
338
|
+
"kind": "documentation",
|
|
339
|
+
"sourcePath": "actions/release-tail/README.md",
|
|
340
|
+
"evidencePath": "actions/release-tail/README.md",
|
|
341
|
+
"availability": "shipped",
|
|
342
|
+
"visibility": "public",
|
|
343
|
+
"participantFacing": true,
|
|
344
|
+
"public": true,
|
|
345
|
+
"plane": "action"
|
|
346
|
+
},
|
|
335
347
|
{
|
|
336
348
|
"id": "doc:actions/report-buildchain-issue/README.md",
|
|
337
349
|
"name": "actions/report-buildchain-issue/README.md",
|
|
@@ -632,6 +644,18 @@
|
|
|
632
644
|
"public": true,
|
|
633
645
|
"plane": "verify"
|
|
634
646
|
},
|
|
647
|
+
{
|
|
648
|
+
"id": "doc:docs/publication-rehearsal.md",
|
|
649
|
+
"name": "Publication rehearsal",
|
|
650
|
+
"kind": "documentation",
|
|
651
|
+
"sourcePath": "docs/publication-rehearsal.md",
|
|
652
|
+
"evidencePath": "docs/publication-rehearsal.md",
|
|
653
|
+
"availability": "shipped",
|
|
654
|
+
"visibility": "public",
|
|
655
|
+
"participantFacing": true,
|
|
656
|
+
"public": true,
|
|
657
|
+
"plane": "use"
|
|
658
|
+
},
|
|
635
659
|
{
|
|
636
660
|
"id": "doc:docs/publish-transaction.md",
|
|
637
661
|
"name": "Publish transaction",
|
|
@@ -716,6 +740,30 @@
|
|
|
716
740
|
"public": true,
|
|
717
741
|
"plane": "use"
|
|
718
742
|
},
|
|
743
|
+
{
|
|
744
|
+
"id": "doc:docs/release-tail-contract.md",
|
|
745
|
+
"name": "Declarative release-tail contract",
|
|
746
|
+
"kind": "documentation",
|
|
747
|
+
"sourcePath": "docs/release-tail-contract.md",
|
|
748
|
+
"evidencePath": "docs/release-tail-contract.md",
|
|
749
|
+
"availability": "shipped",
|
|
750
|
+
"visibility": "public",
|
|
751
|
+
"participantFacing": true,
|
|
752
|
+
"public": true,
|
|
753
|
+
"plane": "verify"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"id": "doc:docs/release-tail-provider-plane.md",
|
|
757
|
+
"name": "Declarative release-tail provider plane",
|
|
758
|
+
"kind": "documentation",
|
|
759
|
+
"sourcePath": "docs/release-tail-provider-plane.md",
|
|
760
|
+
"evidencePath": "docs/release-tail-provider-plane.md",
|
|
761
|
+
"availability": "shipped",
|
|
762
|
+
"visibility": "public",
|
|
763
|
+
"participantFacing": true,
|
|
764
|
+
"public": true,
|
|
765
|
+
"plane": "use"
|
|
766
|
+
},
|
|
719
767
|
{
|
|
720
768
|
"id": "doc:docs/reusable-build-surface.md",
|
|
721
769
|
"name": "Reusable build surface",
|
|
@@ -1604,6 +1652,30 @@
|
|
|
1604
1652
|
"public": true,
|
|
1605
1653
|
"packageExport": "./github-governance-authority"
|
|
1606
1654
|
},
|
|
1655
|
+
{
|
|
1656
|
+
"id": "export:./engineering-housekeeper",
|
|
1657
|
+
"name": "@kungfu-tech/buildchain/engineering-housekeeper",
|
|
1658
|
+
"kind": "package-export",
|
|
1659
|
+
"sourcePath": "packages/core/engineering-housekeeper.js",
|
|
1660
|
+
"evidencePath": "packages/core/engineering-housekeeper.js",
|
|
1661
|
+
"availability": "shipped",
|
|
1662
|
+
"visibility": "public",
|
|
1663
|
+
"participantFacing": true,
|
|
1664
|
+
"public": true,
|
|
1665
|
+
"packageExport": "./engineering-housekeeper"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"id": "export:./engineering-housekeeper-github",
|
|
1669
|
+
"name": "@kungfu-tech/buildchain/engineering-housekeeper-github",
|
|
1670
|
+
"kind": "package-export",
|
|
1671
|
+
"sourcePath": "packages/core/engineering-housekeeper-github.js",
|
|
1672
|
+
"evidencePath": "packages/core/engineering-housekeeper-github.js",
|
|
1673
|
+
"availability": "shipped",
|
|
1674
|
+
"visibility": "public",
|
|
1675
|
+
"participantFacing": true,
|
|
1676
|
+
"public": true,
|
|
1677
|
+
"packageExport": "./engineering-housekeeper-github"
|
|
1678
|
+
},
|
|
1607
1679
|
{
|
|
1608
1680
|
"id": "export:./kfd-gate",
|
|
1609
1681
|
"name": "@kungfu-tech/buildchain/kfd-gate",
|
|
@@ -1700,6 +1772,66 @@
|
|
|
1700
1772
|
"public": true,
|
|
1701
1773
|
"packageExport": "./release-activation-transaction"
|
|
1702
1774
|
},
|
|
1775
|
+
{
|
|
1776
|
+
"id": "export:./release-tail-provider-plane",
|
|
1777
|
+
"name": "@kungfu-tech/buildchain/release-tail-provider-plane",
|
|
1778
|
+
"kind": "package-export",
|
|
1779
|
+
"sourcePath": "packages/core/release-tail-provider-plane.js",
|
|
1780
|
+
"evidencePath": "packages/core/release-tail-provider-plane.js",
|
|
1781
|
+
"availability": "shipped",
|
|
1782
|
+
"visibility": "public",
|
|
1783
|
+
"participantFacing": true,
|
|
1784
|
+
"public": true,
|
|
1785
|
+
"packageExport": "./release-tail-provider-plane"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"id": "export:./release-tail-provider-adapters",
|
|
1789
|
+
"name": "@kungfu-tech/buildchain/release-tail-provider-adapters",
|
|
1790
|
+
"kind": "package-export",
|
|
1791
|
+
"sourcePath": "packages/core/release-tail-provider-adapters.js",
|
|
1792
|
+
"evidencePath": "packages/core/release-tail-provider-adapters.js",
|
|
1793
|
+
"availability": "shipped",
|
|
1794
|
+
"visibility": "public",
|
|
1795
|
+
"participantFacing": true,
|
|
1796
|
+
"public": true,
|
|
1797
|
+
"packageExport": "./release-tail-provider-adapters"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"id": "export:./release-tail-compatibility",
|
|
1801
|
+
"name": "@kungfu-tech/buildchain/release-tail-compatibility",
|
|
1802
|
+
"kind": "package-export",
|
|
1803
|
+
"sourcePath": "packages/core/release-tail-compatibility.js",
|
|
1804
|
+
"evidencePath": "packages/core/release-tail-compatibility.js",
|
|
1805
|
+
"availability": "shipped",
|
|
1806
|
+
"visibility": "public",
|
|
1807
|
+
"participantFacing": true,
|
|
1808
|
+
"public": true,
|
|
1809
|
+
"packageExport": "./release-tail-compatibility"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"id": "export:./publication-rehearsal-runtime",
|
|
1813
|
+
"name": "@kungfu-tech/buildchain/publication-rehearsal-runtime",
|
|
1814
|
+
"kind": "package-export",
|
|
1815
|
+
"sourcePath": "packages/core/publication-rehearsal-runtime.js",
|
|
1816
|
+
"evidencePath": "packages/core/publication-rehearsal-runtime.js",
|
|
1817
|
+
"availability": "shipped",
|
|
1818
|
+
"visibility": "public",
|
|
1819
|
+
"participantFacing": true,
|
|
1820
|
+
"public": true,
|
|
1821
|
+
"packageExport": "./publication-rehearsal-runtime"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"id": "export:./publication-rehearsal-projection",
|
|
1825
|
+
"name": "@kungfu-tech/buildchain/publication-rehearsal-projection",
|
|
1826
|
+
"kind": "package-export",
|
|
1827
|
+
"sourcePath": "packages/core/publication-rehearsal-projection.js",
|
|
1828
|
+
"evidencePath": "packages/core/publication-rehearsal-projection.js",
|
|
1829
|
+
"availability": "shipped",
|
|
1830
|
+
"visibility": "public",
|
|
1831
|
+
"participantFacing": true,
|
|
1832
|
+
"public": true,
|
|
1833
|
+
"packageExport": "./publication-rehearsal-projection"
|
|
1834
|
+
},
|
|
1703
1835
|
{
|
|
1704
1836
|
"id": "export:./surface-manifest",
|
|
1705
1837
|
"name": "@kungfu-tech/buildchain/surface-manifest",
|
|
@@ -1948,6 +2080,18 @@
|
|
|
1948
2080
|
}
|
|
1949
2081
|
],
|
|
1950
2082
|
"reverseEnumeratedSurfaces": [
|
|
2083
|
+
{
|
|
2084
|
+
"id": "cli:architecture",
|
|
2085
|
+
"name": "buildchain architecture validate [--cwd <dir>] [--json]",
|
|
2086
|
+
"kind": "cli-command",
|
|
2087
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2088
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2089
|
+
"availability": "shipped",
|
|
2090
|
+
"visibility": "public",
|
|
2091
|
+
"participantFacing": true,
|
|
2092
|
+
"public": true,
|
|
2093
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2094
|
+
},
|
|
1951
2095
|
{
|
|
1952
2096
|
"id": "cli:audit",
|
|
1953
2097
|
"name": "buildchain audit publication-control-plane --repository <owner/repo> --branch <protected-branch>",
|
|
@@ -3100,6 +3244,18 @@
|
|
|
3100
3244
|
"public": true,
|
|
3101
3245
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3102
3246
|
},
|
|
3247
|
+
{
|
|
3248
|
+
"id": "cli:release-tail",
|
|
3249
|
+
"name": "buildchain release-tail plan --declaration <json-or-path> [--output <path>]",
|
|
3250
|
+
"kind": "cli-command",
|
|
3251
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
3252
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
3253
|
+
"availability": "shipped",
|
|
3254
|
+
"visibility": "public",
|
|
3255
|
+
"participantFacing": true,
|
|
3256
|
+
"public": true,
|
|
3257
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3258
|
+
},
|
|
3103
3259
|
{
|
|
3104
3260
|
"id": "cli:release-transaction",
|
|
3105
3261
|
"name": "buildchain release <inspect|recover|finalize|abort> ...",
|
|
@@ -3597,7 +3753,7 @@
|
|
|
3597
3753
|
"visibility": "public",
|
|
3598
3754
|
"participantFacing": true,
|
|
3599
3755
|
"public": true,
|
|
3600
|
-
"inputCount":
|
|
3756
|
+
"inputCount": 110,
|
|
3601
3757
|
"inputs": [
|
|
3602
3758
|
"allow-repository",
|
|
3603
3759
|
"artifact-name",
|
|
@@ -3611,6 +3767,7 @@
|
|
|
3611
3767
|
"buildchain-ref",
|
|
3612
3768
|
"buildchain-repository",
|
|
3613
3769
|
"channel",
|
|
3770
|
+
"declarative-release-tail",
|
|
3614
3771
|
"dry-run",
|
|
3615
3772
|
"github-artifact-attestation-environment",
|
|
3616
3773
|
"github-artifact-attestation-policy-json",
|
|
@@ -3633,12 +3790,14 @@
|
|
|
3633
3790
|
"promotion-shell-sha",
|
|
3634
3791
|
"promotion-target-ref",
|
|
3635
3792
|
"publication-admission-json",
|
|
3793
|
+
"publication-authority-workflow-path",
|
|
3636
3794
|
"publication-auto-admission",
|
|
3637
3795
|
"publication-auto-no-gate",
|
|
3638
3796
|
"publication-commit-command",
|
|
3639
3797
|
"publication-commit-evidence-path",
|
|
3640
3798
|
"publication-consumer-predicate-id",
|
|
3641
3799
|
"publication-consumer-qualification-command",
|
|
3800
|
+
"publication-consumer-qualification-controller-sha",
|
|
3642
3801
|
"publication-control-plane-audit-json",
|
|
3643
3802
|
"publication-expected-json",
|
|
3644
3803
|
"publication-gate-aggregate-json",
|
|
@@ -4510,8 +4669,9 @@
|
|
|
4510
4669
|
"visibility": "public",
|
|
4511
4670
|
"participantFacing": true,
|
|
4512
4671
|
"public": true,
|
|
4513
|
-
"inputCount":
|
|
4672
|
+
"inputCount": 36,
|
|
4514
4673
|
"inputs": [
|
|
4674
|
+
"active-lease-context",
|
|
4515
4675
|
"affected-paths-json",
|
|
4516
4676
|
"allowed-head-prefixes",
|
|
4517
4677
|
"assignment-root",
|
|
@@ -4527,6 +4687,7 @@
|
|
|
4527
4687
|
"dry-run",
|
|
4528
4688
|
"expected-head-sha",
|
|
4529
4689
|
"expected-pr-number",
|
|
4690
|
+
"handoff-workflow-id",
|
|
4530
4691
|
"initiative-root",
|
|
4531
4692
|
"landing-mode",
|
|
4532
4693
|
"max-merges",
|
|
@@ -4541,6 +4702,8 @@
|
|
|
4541
4702
|
"shard-evidence-roots-json",
|
|
4542
4703
|
"source-identity-root",
|
|
4543
4704
|
"source-patch-root",
|
|
4705
|
+
"source-workflow-id",
|
|
4706
|
+
"source-workflow-run-id",
|
|
4544
4707
|
"target-branch",
|
|
4545
4708
|
"toolchain-root",
|
|
4546
4709
|
"warrant-lease-seconds"
|
|
@@ -4572,6 +4735,76 @@
|
|
|
4572
4735
|
],
|
|
4573
4736
|
"reverseAuditSource": ".github/workflows"
|
|
4574
4737
|
},
|
|
4738
|
+
{
|
|
4739
|
+
"id": "workflow:engineering-housekeeper-daily",
|
|
4740
|
+
"name": "workflow:engineering-housekeeper-daily",
|
|
4741
|
+
"kind": "workflow",
|
|
4742
|
+
"sourcePath": ".github/workflows/engineering-housekeeper-daily.yml",
|
|
4743
|
+
"evidencePath": ".github/workflows/engineering-housekeeper-daily.yml",
|
|
4744
|
+
"availability": "shipped",
|
|
4745
|
+
"visibility": "public",
|
|
4746
|
+
"participantFacing": true,
|
|
4747
|
+
"public": true,
|
|
4748
|
+
"inputCount": 0,
|
|
4749
|
+
"inputs": [],
|
|
4750
|
+
"reverseAuditSource": ".github/workflows"
|
|
4751
|
+
},
|
|
4752
|
+
{
|
|
4753
|
+
"id": "workflow:engineering-housekeeper-monthly",
|
|
4754
|
+
"name": "workflow:engineering-housekeeper-monthly",
|
|
4755
|
+
"kind": "workflow",
|
|
4756
|
+
"sourcePath": ".github/workflows/engineering-housekeeper-monthly.yml",
|
|
4757
|
+
"evidencePath": ".github/workflows/engineering-housekeeper-monthly.yml",
|
|
4758
|
+
"availability": "shipped",
|
|
4759
|
+
"visibility": "public",
|
|
4760
|
+
"participantFacing": true,
|
|
4761
|
+
"public": true,
|
|
4762
|
+
"inputCount": 0,
|
|
4763
|
+
"inputs": [],
|
|
4764
|
+
"reverseAuditSource": ".github/workflows"
|
|
4765
|
+
},
|
|
4766
|
+
{
|
|
4767
|
+
"id": "workflow:engineering-housekeeper-weekly",
|
|
4768
|
+
"name": "workflow:engineering-housekeeper-weekly",
|
|
4769
|
+
"kind": "workflow",
|
|
4770
|
+
"sourcePath": ".github/workflows/engineering-housekeeper-weekly.yml",
|
|
4771
|
+
"evidencePath": ".github/workflows/engineering-housekeeper-weekly.yml",
|
|
4772
|
+
"availability": "shipped",
|
|
4773
|
+
"visibility": "public",
|
|
4774
|
+
"participantFacing": true,
|
|
4775
|
+
"public": true,
|
|
4776
|
+
"inputCount": 0,
|
|
4777
|
+
"inputs": [],
|
|
4778
|
+
"reverseAuditSource": ".github/workflows"
|
|
4779
|
+
},
|
|
4780
|
+
{
|
|
4781
|
+
"id": "workflow:engineering-housekeeper",
|
|
4782
|
+
"name": "workflow:engineering-housekeeper",
|
|
4783
|
+
"kind": "workflow",
|
|
4784
|
+
"sourcePath": ".github/workflows/engineering-housekeeper.yml",
|
|
4785
|
+
"evidencePath": ".github/workflows/engineering-housekeeper.yml",
|
|
4786
|
+
"availability": "shipped",
|
|
4787
|
+
"visibility": "public",
|
|
4788
|
+
"participantFacing": true,
|
|
4789
|
+
"public": true,
|
|
4790
|
+
"inputCount": 13,
|
|
4791
|
+
"inputs": [
|
|
4792
|
+
"apply-enabled",
|
|
4793
|
+
"artifact-prefix",
|
|
4794
|
+
"artifact-retention-days",
|
|
4795
|
+
"buildchain-ref",
|
|
4796
|
+
"buildchain-repository",
|
|
4797
|
+
"max-actions",
|
|
4798
|
+
"mode",
|
|
4799
|
+
"protected-patterns",
|
|
4800
|
+
"repository",
|
|
4801
|
+
"retained-patterns",
|
|
4802
|
+
"stale-days",
|
|
4803
|
+
"stale-pull-request-label",
|
|
4804
|
+
"target-branch"
|
|
4805
|
+
],
|
|
4806
|
+
"reverseAuditSource": ".github/workflows"
|
|
4807
|
+
},
|
|
4575
4808
|
{
|
|
4576
4809
|
"id": "workflow:github-artifact-attestation",
|
|
4577
4810
|
"name": "workflow:github-artifact-attestation",
|
|
@@ -4861,7 +5094,7 @@
|
|
|
4861
5094
|
"visibility": "public",
|
|
4862
5095
|
"participantFacing": true,
|
|
4863
5096
|
"public": true,
|
|
4864
|
-
"inputCount":
|
|
5097
|
+
"inputCount": 101,
|
|
4865
5098
|
"inputs": [
|
|
4866
5099
|
"allow-repository",
|
|
4867
5100
|
"artifact-name",
|
|
@@ -4878,6 +5111,7 @@
|
|
|
4878
5111
|
"buildchain-repository",
|
|
4879
5112
|
"buildchain-stable-contract-lock-path",
|
|
4880
5113
|
"channel",
|
|
5114
|
+
"declarative-release-tail",
|
|
4881
5115
|
"dry-run",
|
|
4882
5116
|
"github-artifact-attestation-environment",
|
|
4883
5117
|
"github-artifact-attestation-policy-json",
|
|
@@ -4895,6 +5129,7 @@
|
|
|
4895
5129
|
"publication-commit-evidence-path",
|
|
4896
5130
|
"publication-consumer-predicate-id",
|
|
4897
5131
|
"publication-consumer-qualification-command",
|
|
5132
|
+
"publication-consumer-qualification-controller-sha",
|
|
4898
5133
|
"publication-control-plane-audit-json",
|
|
4899
5134
|
"publication-expected-json",
|
|
4900
5135
|
"publication-gate-aggregate-json",
|
|
@@ -5046,6 +5281,27 @@
|
|
|
5046
5281
|
],
|
|
5047
5282
|
"reverseAuditSource": ".github/workflows"
|
|
5048
5283
|
},
|
|
5284
|
+
{
|
|
5285
|
+
"id": "workflow:release-tail",
|
|
5286
|
+
"name": "workflow:release-tail",
|
|
5287
|
+
"kind": "workflow",
|
|
5288
|
+
"sourcePath": ".github/workflows/release-tail.yml",
|
|
5289
|
+
"evidencePath": ".github/workflows/release-tail.yml",
|
|
5290
|
+
"availability": "shipped",
|
|
5291
|
+
"visibility": "public",
|
|
5292
|
+
"participantFacing": true,
|
|
5293
|
+
"public": true,
|
|
5294
|
+
"inputCount": 6,
|
|
5295
|
+
"inputs": [
|
|
5296
|
+
"buildchain-ref",
|
|
5297
|
+
"capsule-contract",
|
|
5298
|
+
"capsule-path",
|
|
5299
|
+
"capsule-root",
|
|
5300
|
+
"evidence-path",
|
|
5301
|
+
"state-path"
|
|
5302
|
+
],
|
|
5303
|
+
"reverseAuditSource": ".github/workflows"
|
|
5304
|
+
},
|
|
5049
5305
|
{
|
|
5050
5306
|
"id": "workflow:release-verify",
|
|
5051
5307
|
"name": "workflow:release-verify",
|
|
@@ -5207,12 +5463,13 @@
|
|
|
5207
5463
|
"visibility": "public",
|
|
5208
5464
|
"participantFacing": true,
|
|
5209
5465
|
"public": true,
|
|
5210
|
-
"inputCount":
|
|
5466
|
+
"inputCount": 80,
|
|
5211
5467
|
"inputs": [
|
|
5212
5468
|
"allow-repository",
|
|
5213
5469
|
"branch-protection-bypass-apps",
|
|
5214
5470
|
"branch-protection-bypass-teams",
|
|
5215
5471
|
"branch-protection-bypass-users",
|
|
5472
|
+
"declarative-release-tail",
|
|
5216
5473
|
"dry-run",
|
|
5217
5474
|
"expected-publication-version",
|
|
5218
5475
|
"generated-pull-request-token",
|
|
@@ -5222,6 +5479,7 @@
|
|
|
5222
5479
|
"github-release-artifact-paths",
|
|
5223
5480
|
"github-release-notes",
|
|
5224
5481
|
"github-release-title",
|
|
5482
|
+
"plan-before-target-advance",
|
|
5225
5483
|
"promote-only-release-candidate",
|
|
5226
5484
|
"publication-capability-json",
|
|
5227
5485
|
"publication-gate-aggregate-json",
|
|
@@ -5236,6 +5494,7 @@
|
|
|
5236
5494
|
"publish-package-set-order",
|
|
5237
5495
|
"publish-rematerialize-on-resume",
|
|
5238
5496
|
"publish-required-artifacts-json",
|
|
5497
|
+
"publish-required-artifacts-path",
|
|
5239
5498
|
"publish-sealed-bundle-manifest",
|
|
5240
5499
|
"publish-sealed-bundle-root",
|
|
5241
5500
|
"publish-source-locked",
|
|
@@ -5274,6 +5533,7 @@
|
|
|
5274
5533
|
"release-passport-platform-manifest-paths",
|
|
5275
5534
|
"release-passport-product-name",
|
|
5276
5535
|
"release-passport-promotion-routing-json",
|
|
5536
|
+
"release-tail-state-path",
|
|
5277
5537
|
"require-governance",
|
|
5278
5538
|
"require-publication-qualification",
|
|
5279
5539
|
"require-publish-source-lock",
|
|
@@ -5288,6 +5548,28 @@
|
|
|
5288
5548
|
],
|
|
5289
5549
|
"reverseAuditSource": "actions/*/action.yml"
|
|
5290
5550
|
},
|
|
5551
|
+
{
|
|
5552
|
+
"id": "action:release-tail",
|
|
5553
|
+
"name": "action:release-tail",
|
|
5554
|
+
"kind": "action",
|
|
5555
|
+
"sourcePath": "actions/release-tail/action.yml",
|
|
5556
|
+
"evidencePath": "actions/release-tail/action.yml",
|
|
5557
|
+
"availability": "shipped",
|
|
5558
|
+
"visibility": "public",
|
|
5559
|
+
"participantFacing": true,
|
|
5560
|
+
"public": true,
|
|
5561
|
+
"inputCount": 7,
|
|
5562
|
+
"inputs": [
|
|
5563
|
+
"capsule",
|
|
5564
|
+
"capsule-contract",
|
|
5565
|
+
"capsule-root",
|
|
5566
|
+
"evidence-path",
|
|
5567
|
+
"github-token",
|
|
5568
|
+
"http-token",
|
|
5569
|
+
"state-path"
|
|
5570
|
+
],
|
|
5571
|
+
"reverseAuditSource": "actions/*/action.yml"
|
|
5572
|
+
},
|
|
5291
5573
|
{
|
|
5292
5574
|
"id": "action:report-buildchain-issue",
|
|
5293
5575
|
"name": "action:report-buildchain-issue",
|
|
@@ -5437,6 +5719,18 @@
|
|
|
5437
5719
|
"public": true,
|
|
5438
5720
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5439
5721
|
},
|
|
5722
|
+
{
|
|
5723
|
+
"id": "site-page:action:release-tail",
|
|
5724
|
+
"name": "site-page:action:release-tail",
|
|
5725
|
+
"kind": "site-page",
|
|
5726
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5727
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5728
|
+
"availability": "shipped",
|
|
5729
|
+
"visibility": "public",
|
|
5730
|
+
"participantFacing": true,
|
|
5731
|
+
"public": true,
|
|
5732
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5733
|
+
},
|
|
5440
5734
|
{
|
|
5441
5735
|
"id": "site-page:action:report-buildchain-issue",
|
|
5442
5736
|
"name": "site-page:action:report-buildchain-issue",
|
|
@@ -5773,6 +6067,18 @@
|
|
|
5773
6067
|
"public": true,
|
|
5774
6068
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5775
6069
|
},
|
|
6070
|
+
{
|
|
6071
|
+
"id": "site-page:manual:engineering-housekeeper",
|
|
6072
|
+
"name": "site-page:manual:engineering-housekeeper",
|
|
6073
|
+
"kind": "site-page",
|
|
6074
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6075
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6076
|
+
"availability": "shipped",
|
|
6077
|
+
"visibility": "public",
|
|
6078
|
+
"participantFacing": true,
|
|
6079
|
+
"public": true,
|
|
6080
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6081
|
+
},
|
|
5776
6082
|
{
|
|
5777
6083
|
"id": "site-page:manual:getting-started",
|
|
5778
6084
|
"name": "site-page:manual:getting-started",
|
|
@@ -5977,6 +6283,18 @@
|
|
|
5977
6283
|
"public": true,
|
|
5978
6284
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5979
6285
|
},
|
|
6286
|
+
{
|
|
6287
|
+
"id": "site-page:manual:publication-rehearsal",
|
|
6288
|
+
"name": "site-page:manual:publication-rehearsal",
|
|
6289
|
+
"kind": "site-page",
|
|
6290
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6291
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6292
|
+
"availability": "shipped",
|
|
6293
|
+
"visibility": "public",
|
|
6294
|
+
"participantFacing": true,
|
|
6295
|
+
"public": true,
|
|
6296
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6297
|
+
},
|
|
5980
6298
|
{
|
|
5981
6299
|
"id": "site-page:manual:publish-transaction",
|
|
5982
6300
|
"name": "site-page:manual:publish-transaction",
|
|
@@ -6073,6 +6391,30 @@
|
|
|
6073
6391
|
"public": true,
|
|
6074
6392
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6075
6393
|
},
|
|
6394
|
+
{
|
|
6395
|
+
"id": "site-page:manual:release-tail-contract",
|
|
6396
|
+
"name": "site-page:manual:release-tail-contract",
|
|
6397
|
+
"kind": "site-page",
|
|
6398
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6399
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6400
|
+
"availability": "shipped",
|
|
6401
|
+
"visibility": "public",
|
|
6402
|
+
"participantFacing": true,
|
|
6403
|
+
"public": true,
|
|
6404
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6405
|
+
},
|
|
6406
|
+
{
|
|
6407
|
+
"id": "site-page:manual:release-tail-provider-plane",
|
|
6408
|
+
"name": "site-page:manual:release-tail-provider-plane",
|
|
6409
|
+
"kind": "site-page",
|
|
6410
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6411
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6412
|
+
"availability": "shipped",
|
|
6413
|
+
"visibility": "public",
|
|
6414
|
+
"participantFacing": true,
|
|
6415
|
+
"public": true,
|
|
6416
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6417
|
+
},
|
|
6076
6418
|
{
|
|
6077
6419
|
"id": "site-page:manual:reusable-build-surface",
|
|
6078
6420
|
"name": "site-page:manual:reusable-build-surface",
|
|
@@ -6352,6 +6694,6 @@
|
|
|
6352
6694
|
}
|
|
6353
6695
|
}
|
|
6354
6696
|
],
|
|
6355
|
-
"publicSurfaceCount":
|
|
6697
|
+
"publicSurfaceCount": 425
|
|
6356
6698
|
}
|
|
6357
6699
|
}
|