@kungfu-tech/buildchain 3.0.2 → 3.0.3-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/AGENTS.md +1 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +27 -1
- package/actions/promote-buildchain-ref/README.md +90 -19
- package/actions/report-buildchain-issue/README.md +20 -2
- package/actions/run-lifecycle/README.md +5 -0
- package/actions/validate-config/README.md +19 -1
- package/bin/buildchain.mjs +56 -2
- package/bin/internal/command-registry.mjs +82 -0
- package/bin/internal/trust-release-cli.mjs +1 -0
- package/contracts/auditable-demo-media-profiles-v1.json +116 -1
- package/contracts/buildchain-v2-residuals-v1.json +146 -0
- package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +143 -0
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +7 -3
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/complete-transcript.txt +2 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/public-projection.json +16 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/scene.json +12 -0
- package/dist/site/buildchain-contract.json +188 -46
- package/dist/site/buildchain-site.json +181 -90
- package/dist/site/capability-registry.json +5 -5
- package/dist/site/cli-registry.json +860 -98
- package/dist/site/controller-registry.json +118 -5
- package/dist/site/kfd-claims.json +233 -19
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +20 -20
- package/dist/site/node-api-registry.json +374 -59
- package/dist/site/page-registry.json +156 -65
- package/dist/site/public-surface-audit.json +231 -22
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -0
- package/dist/site/site-manifest.json +24 -24
- package/dist/site/workflow-registry.json +575 -79
- package/docs/MAP.md +22 -4
- package/docs/auditable-demo.md +54 -13
- package/docs/aws-us-elastic-runner-burst-plane.md +381 -0
- package/docs/cli.md +119 -12
- package/docs/consumer-issue-reporting.md +20 -2
- package/docs/dev-alpha-candidate-patrol.md +24 -10
- package/docs/github-governance-authority.md +24 -31
- package/docs/lifecycle-protocol.md +20 -2
- package/docs/migration-inventory.md +24 -5
- package/docs/observed-evidence-patrol.md +28 -12
- package/docs/ownership.md +19 -1
- package/docs/publication-artifacts.md +158 -18
- package/docs/publication-authority.md +4 -4
- package/docs/publish-transaction.md +78 -31
- package/docs/release-candidate.md +24 -0
- package/docs/release-flow.md +50 -32
- package/docs/release-governance.md +39 -32
- package/docs/release-passport.md +4 -0
- package/docs/release-propagation.md +57 -12
- package/docs/reusable-build-surface.md +218 -90
- package/docs/runtime-train-validation.md +20 -2
- package/docs/shifu-gate-profiles.md +7 -1
- package/docs/stable-candidate-patrol.md +6 -6
- package/docs/toolkit-observability.md +22 -0
- package/docs/versioning.md +46 -24
- package/docs/web-surface-deployments.md +82 -1
- package/package.json +7 -5
- package/packages/core/README.md +60 -4
- package/packages/core/artifact-signing.js +1 -0
- package/packages/core/buildchain-contract.js +9 -4
- package/packages/core/cache-evidence.js +1 -0
- package/packages/core/controller-evidence.js +2 -0
- package/packages/core/diagnostics.js +105 -30
- package/packages/core/github-governance-authority.js +25 -17
- package/packages/core/index.js +40 -0
- package/packages/core/paper.js +3226 -0
- package/packages/core/public-surface-audit.js +3 -0
- package/packages/core/publication-artifact.js +1 -6
- package/packages/core/publication-authority.js +1 -0
- package/packages/core/publication-control-plane-audit.js +28 -0
- package/packages/core/publication-reproducibility.js +947 -0
- package/packages/core/publication-sealed-bundle.js +190 -0
- package/packages/core/publish-transaction.js +147 -17
- package/packages/core/release-candidate.js +234 -0
- package/packages/core/release-passport.js +519 -228
- package/packages/core/release-propagation.js +175 -1
- package/packages/core/stable-release-gate.js +4 -1
- package/scripts/artifact-signing-delegation.mjs +268 -0
- package/scripts/audit-github-governance.mjs +32 -13
- package/scripts/audit-publication-control-plane.mjs +17 -8
- package/scripts/auditable-demo.mjs +266 -7
- package/scripts/aws-codebuild-toolchain.mjs +285 -0
- package/scripts/aws-macos-jit-core.mjs +378 -0
- package/scripts/aws-macos-jit.mjs +123 -0
- package/scripts/aws-runner-burst-core.mjs +248 -0
- package/scripts/aws-runner-burst.mjs +79 -0
- package/scripts/aws-windows-jit-core.mjs +374 -0
- package/scripts/aws-windows-jit.mjs +121 -0
- package/scripts/build-contract-core.mjs +69 -6
- package/scripts/build-standalone-binary.mjs +23 -0
- package/scripts/buildchain-contract-lock.mjs +1 -1
- package/scripts/buildchain-patrol.mjs +1 -1
- package/scripts/check-internal-architecture.mjs +69 -2
- package/scripts/check-inventory.mjs +70 -2
- package/scripts/check-javascript-syntax.mjs +31 -0
- package/scripts/check-maintainability.mjs +371 -0
- package/scripts/compiler-cache-evidence.mjs +221 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +288 -43
- package/scripts/dispatch-artifact-signing-authority.mjs +7 -1
- package/scripts/finalize-native-artifact-signing-result.mjs +185 -31
- package/scripts/gate-profile-core.mjs +6 -1
- package/scripts/generate-channel-promotion-workflow.mjs +3 -12
- package/scripts/generate-release-candidate-passport.mjs +4 -0
- package/scripts/generate-site-bundle.mjs +84 -18
- package/scripts/import-artifact-signing-results.mjs +64 -5
- package/scripts/inspect-artifact-signing-requests.mjs +52 -14
- package/scripts/maintainability-metrics.mjs +339 -0
- package/scripts/npm-publish-transaction.mjs +57 -6
- package/scripts/observed-evidence.mjs +151 -33
- package/scripts/paper.mjs +645 -0
- package/scripts/promotion-channel-router.mjs +16 -4
- package/scripts/publication-reproducibility.mjs +62 -0
- package/scripts/reconcile-github-governance.mjs +8 -1
- package/scripts/release-propagation.mjs +39 -0
- package/scripts/resolve-artifact-signing-upload-route.mjs +55 -0
- package/scripts/resolve-build-contract.mjs +6 -0
- package/scripts/route-offline-runners.mjs +236 -0
- package/scripts/run-candidate-body-prefix-renderer.mjs +187 -0
- package/scripts/run-lifecycle-core.mjs +62 -1
- package/scripts/runtime-ref-core.mjs +36 -4
- package/scripts/seal-artifact-signing-requests.mjs +64 -12
- package/scripts/stable-candidate-qualification.mjs +50 -0
- package/scripts/verify-artifact-signing-results.mjs +26 -1
- package/scripts/web-surface-core.mjs +272 -86
- package/scripts/web-surface-production-decision.mjs +19 -3
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"path": ".github/workflows/.auditable-demo.yml",
|
|
9
9
|
"reusable": true,
|
|
10
10
|
"inputs": [
|
|
11
|
+
"adapter-arguments-json",
|
|
11
12
|
"adapter-path",
|
|
12
13
|
"artifact-retention-days",
|
|
13
14
|
"buildchain-repository",
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
"source-artifact-name",
|
|
20
21
|
"source-ref"
|
|
21
22
|
],
|
|
22
|
-
"inputCount":
|
|
23
|
+
"inputCount": 11,
|
|
23
24
|
"secrets": [],
|
|
24
25
|
"secretCount": 0,
|
|
25
26
|
"outputs": [
|
|
@@ -40,7 +41,14 @@
|
|
|
40
41
|
"outputCount": 13,
|
|
41
42
|
"surface": "auditable-demo",
|
|
42
43
|
"capabilityGroup": "api-cli-reference",
|
|
43
|
-
"status": "preview"
|
|
44
|
+
"status": "preview",
|
|
45
|
+
"owner": "buildchain-workflows",
|
|
46
|
+
"maturity": "preview",
|
|
47
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
48
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
49
|
+
"deprecationReplacement": "",
|
|
50
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
51
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
44
52
|
},
|
|
45
53
|
{
|
|
46
54
|
"id": ".binary-release-assets",
|
|
@@ -70,13 +78,21 @@
|
|
|
70
78
|
"outputCount": 0,
|
|
71
79
|
"surface": "reusable-workflow",
|
|
72
80
|
"capabilityGroup": "api-cli-reference",
|
|
73
|
-
"status": "active"
|
|
81
|
+
"status": "active",
|
|
82
|
+
"owner": "buildchain-workflows",
|
|
83
|
+
"maturity": "active",
|
|
84
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
85
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
86
|
+
"deprecationReplacement": "",
|
|
87
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
88
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
74
89
|
},
|
|
75
90
|
{
|
|
76
91
|
"id": ".build",
|
|
77
92
|
"path": ".github/workflows/.build.yml",
|
|
78
93
|
"reusable": true,
|
|
79
94
|
"inputs": [
|
|
95
|
+
"artifact-compression-level",
|
|
80
96
|
"artifact-name",
|
|
81
97
|
"artifact-name-template",
|
|
82
98
|
"artifact-paths",
|
|
@@ -88,7 +104,11 @@
|
|
|
88
104
|
"artifact-relay-s3-role-arn",
|
|
89
105
|
"artifact-relay-s3-upload-role-arn",
|
|
90
106
|
"artifact-retention-days",
|
|
107
|
+
"artifact-signing-request-upload-no-proxy",
|
|
91
108
|
"artifact-transfer-mode",
|
|
109
|
+
"aws-codebuild-project",
|
|
110
|
+
"aws-ec2-macos-runner-label",
|
|
111
|
+
"aws-ec2-windows-runner-label",
|
|
92
112
|
"build-command",
|
|
93
113
|
"buildchain-contract-compatibility-policy",
|
|
94
114
|
"buildchain-contract-drift-issue-mode",
|
|
@@ -106,6 +126,9 @@
|
|
|
106
126
|
"checkout-cache-mode",
|
|
107
127
|
"checkout-cache-reference-repository-template",
|
|
108
128
|
"checkout-cache-timeout-seconds",
|
|
129
|
+
"compiler-cache-platforms-json",
|
|
130
|
+
"compiler-cache-provider",
|
|
131
|
+
"compiler-cache-required",
|
|
109
132
|
"control-runner-json",
|
|
110
133
|
"credential-island-caller-owned",
|
|
111
134
|
"credential-island-environment",
|
|
@@ -132,6 +155,7 @@
|
|
|
132
155
|
"publish-registry",
|
|
133
156
|
"publish-source-ref",
|
|
134
157
|
"release-candidate",
|
|
158
|
+
"release-candidate-family-evidence-json",
|
|
135
159
|
"requested-parallelism",
|
|
136
160
|
"require-build",
|
|
137
161
|
"require-install",
|
|
@@ -142,6 +166,7 @@
|
|
|
142
166
|
"rustup-dist-server",
|
|
143
167
|
"rustup-update-root",
|
|
144
168
|
"sample-process-tree",
|
|
169
|
+
"self-hosted-offline-fallback",
|
|
145
170
|
"setup-node",
|
|
146
171
|
"setup-rust",
|
|
147
172
|
"shifu-cache-profile-digest",
|
|
@@ -150,7 +175,7 @@
|
|
|
150
175
|
"verify-command",
|
|
151
176
|
"working-directory"
|
|
152
177
|
],
|
|
153
|
-
"inputCount":
|
|
178
|
+
"inputCount": 82,
|
|
154
179
|
"secrets": [
|
|
155
180
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
156
181
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -205,12 +230,20 @@
|
|
|
205
230
|
"release-candidate-passport-json",
|
|
206
231
|
"release-manifest-json",
|
|
207
232
|
"runner-preset",
|
|
233
|
+
"runner-routing-json",
|
|
208
234
|
"trusted-event"
|
|
209
235
|
],
|
|
210
|
-
"outputCount":
|
|
236
|
+
"outputCount": 43,
|
|
211
237
|
"surface": "reusable-build",
|
|
212
238
|
"capabilityGroup": "api-cli-reference",
|
|
213
|
-
"status": "active"
|
|
239
|
+
"status": "active",
|
|
240
|
+
"owner": "buildchain-workflows",
|
|
241
|
+
"maturity": "active",
|
|
242
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
243
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
244
|
+
"deprecationReplacement": "",
|
|
245
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
246
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
214
247
|
},
|
|
215
248
|
{
|
|
216
249
|
"id": ".bump-minor-version",
|
|
@@ -226,7 +259,14 @@
|
|
|
226
259
|
"outputCount": 0,
|
|
227
260
|
"surface": "reusable-workflow",
|
|
228
261
|
"capabilityGroup": "api-cli-reference",
|
|
229
|
-
"status": "active"
|
|
262
|
+
"status": "active",
|
|
263
|
+
"owner": "buildchain-workflows",
|
|
264
|
+
"maturity": "active",
|
|
265
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
266
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
267
|
+
"deprecationReplacement": "",
|
|
268
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
269
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
230
270
|
},
|
|
231
271
|
{
|
|
232
272
|
"id": ".gate-profile",
|
|
@@ -286,7 +326,14 @@
|
|
|
286
326
|
"outputCount": 14,
|
|
287
327
|
"surface": "reusable-workflow",
|
|
288
328
|
"capabilityGroup": "api-cli-reference",
|
|
289
|
-
"status": "active"
|
|
329
|
+
"status": "active",
|
|
330
|
+
"owner": "buildchain-workflows",
|
|
331
|
+
"maturity": "active",
|
|
332
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
333
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
334
|
+
"deprecationReplacement": "",
|
|
335
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
336
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
290
337
|
},
|
|
291
338
|
{
|
|
292
339
|
"id": ".publication-authority",
|
|
@@ -342,7 +389,14 @@
|
|
|
342
389
|
"outputCount": 5,
|
|
343
390
|
"surface": "reusable-workflow",
|
|
344
391
|
"capabilityGroup": "api-cli-reference",
|
|
345
|
-
"status": "active"
|
|
392
|
+
"status": "active",
|
|
393
|
+
"owner": "buildchain-workflows",
|
|
394
|
+
"maturity": "active",
|
|
395
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
396
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
397
|
+
"deprecationReplacement": "",
|
|
398
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
399
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
346
400
|
},
|
|
347
401
|
{
|
|
348
402
|
"id": ".release-candidate-promote",
|
|
@@ -411,11 +465,17 @@
|
|
|
411
465
|
"publish-transaction-override",
|
|
412
466
|
"release-activation-command",
|
|
413
467
|
"release-activation-receipt-set-path",
|
|
468
|
+
"release-candidate-family-assignment-id",
|
|
469
|
+
"release-candidate-family-evidence-required",
|
|
470
|
+
"release-candidate-family-evidence-root",
|
|
471
|
+
"release-candidate-family-initiative-id",
|
|
414
472
|
"release-candidate-workflow-file",
|
|
415
473
|
"release-candidate-workflow-name",
|
|
416
474
|
"release-passport",
|
|
475
|
+
"release-passport-attachment-command",
|
|
417
476
|
"release-passport-buildchain-self-kfd",
|
|
418
477
|
"release-passport-evidence-command",
|
|
478
|
+
"release-passport-evidence-jsons",
|
|
419
479
|
"release-passport-evidence-path",
|
|
420
480
|
"release-passport-impact-json",
|
|
421
481
|
"release-passport-invariant-passport-command",
|
|
@@ -438,7 +498,7 @@
|
|
|
438
498
|
"target-sha",
|
|
439
499
|
"trusted-publishing"
|
|
440
500
|
],
|
|
441
|
-
"inputCount":
|
|
501
|
+
"inputCount": 94,
|
|
442
502
|
"secrets": [
|
|
443
503
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
444
504
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -476,7 +536,14 @@
|
|
|
476
536
|
"outputCount": 19,
|
|
477
537
|
"surface": "reusable-workflow",
|
|
478
538
|
"capabilityGroup": "api-cli-reference",
|
|
479
|
-
"status": "active"
|
|
539
|
+
"status": "active",
|
|
540
|
+
"owner": "buildchain-workflows",
|
|
541
|
+
"maturity": "active",
|
|
542
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
543
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
544
|
+
"deprecationReplacement": "",
|
|
545
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
546
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
480
547
|
},
|
|
481
548
|
{
|
|
482
549
|
"id": ".release-docker",
|
|
@@ -496,7 +563,14 @@
|
|
|
496
563
|
"outputCount": 0,
|
|
497
564
|
"surface": "reusable-workflow",
|
|
498
565
|
"capabilityGroup": "api-cli-reference",
|
|
499
|
-
"status": "active"
|
|
566
|
+
"status": "active",
|
|
567
|
+
"owner": "buildchain-workflows",
|
|
568
|
+
"maturity": "active",
|
|
569
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
570
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
571
|
+
"deprecationReplacement": "",
|
|
572
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
573
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
500
574
|
},
|
|
501
575
|
{
|
|
502
576
|
"id": ".release-elastic-beanstalk",
|
|
@@ -518,7 +592,14 @@
|
|
|
518
592
|
"outputCount": 0,
|
|
519
593
|
"surface": "reusable-workflow",
|
|
520
594
|
"capabilityGroup": "api-cli-reference",
|
|
521
|
-
"status": "active"
|
|
595
|
+
"status": "active",
|
|
596
|
+
"owner": "buildchain-workflows",
|
|
597
|
+
"maturity": "active",
|
|
598
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
599
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
600
|
+
"deprecationReplacement": "",
|
|
601
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
602
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
522
603
|
},
|
|
523
604
|
{
|
|
524
605
|
"id": ".release-new-version",
|
|
@@ -569,7 +650,14 @@
|
|
|
569
650
|
"outputCount": 0,
|
|
570
651
|
"surface": "reusable-workflow",
|
|
571
652
|
"capabilityGroup": "api-cli-reference",
|
|
572
|
-
"status": "active"
|
|
653
|
+
"status": "active",
|
|
654
|
+
"owner": "buildchain-workflows",
|
|
655
|
+
"maturity": "active",
|
|
656
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
657
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
658
|
+
"deprecationReplacement": "",
|
|
659
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
660
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
573
661
|
},
|
|
574
662
|
{
|
|
575
663
|
"id": ".release-verify",
|
|
@@ -637,7 +725,14 @@
|
|
|
637
725
|
"outputCount": 0,
|
|
638
726
|
"surface": "reusable-workflow",
|
|
639
727
|
"capabilityGroup": "api-cli-reference",
|
|
640
|
-
"status": "active"
|
|
728
|
+
"status": "active",
|
|
729
|
+
"owner": "buildchain-workflows",
|
|
730
|
+
"maturity": "active",
|
|
731
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
732
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
733
|
+
"deprecationReplacement": "",
|
|
734
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
735
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
641
736
|
},
|
|
642
737
|
{
|
|
643
738
|
"id": ".sam-release",
|
|
@@ -658,7 +753,14 @@
|
|
|
658
753
|
"outputCount": 0,
|
|
659
754
|
"surface": "reusable-workflow",
|
|
660
755
|
"capabilityGroup": "api-cli-reference",
|
|
661
|
-
"status": "active"
|
|
756
|
+
"status": "active",
|
|
757
|
+
"owner": "buildchain-workflows",
|
|
758
|
+
"maturity": "active",
|
|
759
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
760
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
761
|
+
"deprecationReplacement": "",
|
|
762
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
763
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
662
764
|
},
|
|
663
765
|
{
|
|
664
766
|
"id": ".sam-verify",
|
|
@@ -680,7 +782,14 @@
|
|
|
680
782
|
"outputCount": 0,
|
|
681
783
|
"surface": "reusable-workflow",
|
|
682
784
|
"capabilityGroup": "api-cli-reference",
|
|
683
|
-
"status": "active"
|
|
785
|
+
"status": "active",
|
|
786
|
+
"owner": "buildchain-workflows",
|
|
787
|
+
"maturity": "active",
|
|
788
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
789
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
790
|
+
"deprecationReplacement": "",
|
|
791
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
792
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
684
793
|
},
|
|
685
794
|
{
|
|
686
795
|
"id": ".sync-release-page",
|
|
@@ -711,7 +820,14 @@
|
|
|
711
820
|
"outputCount": 0,
|
|
712
821
|
"surface": "reusable-workflow",
|
|
713
822
|
"capabilityGroup": "api-cli-reference",
|
|
714
|
-
"status": "active"
|
|
823
|
+
"status": "active",
|
|
824
|
+
"owner": "buildchain-workflows",
|
|
825
|
+
"maturity": "active",
|
|
826
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
827
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
828
|
+
"deprecationReplacement": "",
|
|
829
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
830
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
715
831
|
},
|
|
716
832
|
{
|
|
717
833
|
"id": ".sync-remote-git",
|
|
@@ -733,7 +849,14 @@
|
|
|
733
849
|
"outputCount": 0,
|
|
734
850
|
"surface": "reusable-workflow",
|
|
735
851
|
"capabilityGroup": "api-cli-reference",
|
|
736
|
-
"status": "active"
|
|
852
|
+
"status": "active",
|
|
853
|
+
"owner": "buildchain-workflows",
|
|
854
|
+
"maturity": "active",
|
|
855
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
856
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
857
|
+
"deprecationReplacement": "",
|
|
858
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
859
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
737
860
|
},
|
|
738
861
|
{
|
|
739
862
|
"id": ".web-surface",
|
|
@@ -815,7 +938,14 @@
|
|
|
815
938
|
"outputCount": 23,
|
|
816
939
|
"surface": "reusable-workflow",
|
|
817
940
|
"capabilityGroup": "api-cli-reference",
|
|
818
|
-
"status": "active"
|
|
941
|
+
"status": "active",
|
|
942
|
+
"owner": "buildchain-workflows",
|
|
943
|
+
"maturity": "active",
|
|
944
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
945
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
946
|
+
"deprecationReplacement": "",
|
|
947
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
948
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
819
949
|
},
|
|
820
950
|
{
|
|
821
951
|
"id": ".wheel-release",
|
|
@@ -836,7 +966,14 @@
|
|
|
836
966
|
"outputCount": 0,
|
|
837
967
|
"surface": "reusable-workflow",
|
|
838
968
|
"capabilityGroup": "api-cli-reference",
|
|
839
|
-
"status": "active"
|
|
969
|
+
"status": "active",
|
|
970
|
+
"owner": "buildchain-workflows",
|
|
971
|
+
"maturity": "active",
|
|
972
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
973
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
974
|
+
"deprecationReplacement": "",
|
|
975
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
976
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
840
977
|
},
|
|
841
978
|
{
|
|
842
979
|
"id": ".wheel-verify",
|
|
@@ -860,7 +997,14 @@
|
|
|
860
997
|
"outputCount": 0,
|
|
861
998
|
"surface": "reusable-workflow",
|
|
862
999
|
"capabilityGroup": "api-cli-reference",
|
|
863
|
-
"status": "active"
|
|
1000
|
+
"status": "active",
|
|
1001
|
+
"owner": "buildchain-workflows",
|
|
1002
|
+
"maturity": "active",
|
|
1003
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1004
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1005
|
+
"deprecationReplacement": "",
|
|
1006
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1007
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
864
1008
|
},
|
|
865
1009
|
{
|
|
866
1010
|
"id": "artifact-signing-authority",
|
|
@@ -874,7 +1018,14 @@
|
|
|
874
1018
|
"outputCount": 0,
|
|
875
1019
|
"surface": "repository-workflow",
|
|
876
1020
|
"capabilityGroup": "api-cli-reference",
|
|
877
|
-
"status": "active"
|
|
1021
|
+
"status": "active",
|
|
1022
|
+
"owner": "buildchain-workflows",
|
|
1023
|
+
"maturity": "active",
|
|
1024
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1025
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1026
|
+
"deprecationReplacement": "",
|
|
1027
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1028
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
878
1029
|
},
|
|
879
1030
|
{
|
|
880
1031
|
"id": "auditable-demo-media-profile-qualification",
|
|
@@ -888,7 +1039,14 @@
|
|
|
888
1039
|
"outputCount": 0,
|
|
889
1040
|
"surface": "repository-workflow",
|
|
890
1041
|
"capabilityGroup": "api-cli-reference",
|
|
891
|
-
"status": "active"
|
|
1042
|
+
"status": "active",
|
|
1043
|
+
"owner": "buildchain-workflows",
|
|
1044
|
+
"maturity": "active",
|
|
1045
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1046
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1047
|
+
"deprecationReplacement": "",
|
|
1048
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1049
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
892
1050
|
},
|
|
893
1051
|
{
|
|
894
1052
|
"id": "binary-distribution",
|
|
@@ -902,7 +1060,14 @@
|
|
|
902
1060
|
"outputCount": 0,
|
|
903
1061
|
"surface": "release-passport",
|
|
904
1062
|
"capabilityGroup": "api-cli-reference",
|
|
905
|
-
"status": "active"
|
|
1063
|
+
"status": "active",
|
|
1064
|
+
"owner": "buildchain-workflows",
|
|
1065
|
+
"maturity": "active",
|
|
1066
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1067
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1068
|
+
"deprecationReplacement": "",
|
|
1069
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1070
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
906
1071
|
},
|
|
907
1072
|
{
|
|
908
1073
|
"id": "binary-release-assets",
|
|
@@ -916,7 +1081,14 @@
|
|
|
916
1081
|
"outputCount": 0,
|
|
917
1082
|
"surface": "repository-workflow",
|
|
918
1083
|
"capabilityGroup": "api-cli-reference",
|
|
919
|
-
"status": "active"
|
|
1084
|
+
"status": "active",
|
|
1085
|
+
"owner": "buildchain-workflows",
|
|
1086
|
+
"maturity": "active",
|
|
1087
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1088
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1089
|
+
"deprecationReplacement": "",
|
|
1090
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1091
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
920
1092
|
},
|
|
921
1093
|
{
|
|
922
1094
|
"id": "build-surface-fixture",
|
|
@@ -930,13 +1102,21 @@
|
|
|
930
1102
|
"outputCount": 0,
|
|
931
1103
|
"surface": "repository-workflow",
|
|
932
1104
|
"capabilityGroup": "api-cli-reference",
|
|
933
|
-
"status": "repository-internal"
|
|
1105
|
+
"status": "repository-internal",
|
|
1106
|
+
"owner": "buildchain-workflows",
|
|
1107
|
+
"maturity": "repository-internal",
|
|
1108
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1109
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1110
|
+
"deprecationReplacement": "",
|
|
1111
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1112
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
934
1113
|
},
|
|
935
1114
|
{
|
|
936
1115
|
"id": "build",
|
|
937
1116
|
"path": ".github/workflows/build.yml",
|
|
938
1117
|
"reusable": true,
|
|
939
1118
|
"inputs": [
|
|
1119
|
+
"artifact-compression-level",
|
|
940
1120
|
"artifact-name",
|
|
941
1121
|
"artifact-name-template",
|
|
942
1122
|
"artifact-paths",
|
|
@@ -948,7 +1128,11 @@
|
|
|
948
1128
|
"artifact-relay-s3-role-arn",
|
|
949
1129
|
"artifact-relay-s3-upload-role-arn",
|
|
950
1130
|
"artifact-retention-days",
|
|
1131
|
+
"artifact-signing-request-upload-no-proxy",
|
|
951
1132
|
"artifact-transfer-mode",
|
|
1133
|
+
"aws-codebuild-project",
|
|
1134
|
+
"aws-ec2-macos-runner-label",
|
|
1135
|
+
"aws-ec2-windows-runner-label",
|
|
952
1136
|
"build-command",
|
|
953
1137
|
"buildchain-alpha-contract-lock-path",
|
|
954
1138
|
"buildchain-channel",
|
|
@@ -969,6 +1153,9 @@
|
|
|
969
1153
|
"checkout-cache-mode",
|
|
970
1154
|
"checkout-cache-reference-repository-template",
|
|
971
1155
|
"checkout-cache-timeout-seconds",
|
|
1156
|
+
"compiler-cache-platforms-json",
|
|
1157
|
+
"compiler-cache-provider",
|
|
1158
|
+
"compiler-cache-required",
|
|
972
1159
|
"control-runner-json",
|
|
973
1160
|
"credential-island-caller-owned",
|
|
974
1161
|
"credential-island-environment",
|
|
@@ -995,6 +1182,7 @@
|
|
|
995
1182
|
"publish-registry",
|
|
996
1183
|
"publish-source-ref",
|
|
997
1184
|
"release-candidate",
|
|
1185
|
+
"release-candidate-family-evidence-json",
|
|
998
1186
|
"requested-parallelism",
|
|
999
1187
|
"require-build",
|
|
1000
1188
|
"require-install",
|
|
@@ -1005,6 +1193,7 @@
|
|
|
1005
1193
|
"rustup-dist-server",
|
|
1006
1194
|
"rustup-update-root",
|
|
1007
1195
|
"sample-process-tree",
|
|
1196
|
+
"self-hosted-offline-fallback",
|
|
1008
1197
|
"setup-node",
|
|
1009
1198
|
"setup-rust",
|
|
1010
1199
|
"shifu-cache-profile-digest",
|
|
@@ -1013,7 +1202,7 @@
|
|
|
1013
1202
|
"verify-command",
|
|
1014
1203
|
"working-directory"
|
|
1015
1204
|
],
|
|
1016
|
-
"inputCount":
|
|
1205
|
+
"inputCount": 85,
|
|
1017
1206
|
"secrets": [
|
|
1018
1207
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
1019
1208
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -1071,12 +1260,20 @@
|
|
|
1071
1260
|
"release-candidate-passport-json",
|
|
1072
1261
|
"release-manifest-json",
|
|
1073
1262
|
"runner-preset",
|
|
1263
|
+
"runner-routing-json",
|
|
1074
1264
|
"trusted-event"
|
|
1075
1265
|
],
|
|
1076
|
-
"outputCount":
|
|
1266
|
+
"outputCount": 46,
|
|
1077
1267
|
"surface": "channel-build-router",
|
|
1078
1268
|
"capabilityGroup": "reusable-build",
|
|
1079
|
-
"status": "active"
|
|
1269
|
+
"status": "active",
|
|
1270
|
+
"owner": "buildchain-workflows",
|
|
1271
|
+
"maturity": "active",
|
|
1272
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1273
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1274
|
+
"deprecationReplacement": "",
|
|
1275
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1276
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1080
1277
|
},
|
|
1081
1278
|
{
|
|
1082
1279
|
"id": "buildchain-alpha-self-dogfood",
|
|
@@ -1090,7 +1287,14 @@
|
|
|
1090
1287
|
"outputCount": 0,
|
|
1091
1288
|
"surface": "repository-workflow",
|
|
1092
1289
|
"capabilityGroup": "api-cli-reference",
|
|
1093
|
-
"status": "active"
|
|
1290
|
+
"status": "active",
|
|
1291
|
+
"owner": "buildchain-workflows",
|
|
1292
|
+
"maturity": "active",
|
|
1293
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1294
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1295
|
+
"deprecationReplacement": "",
|
|
1296
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1297
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1094
1298
|
},
|
|
1095
1299
|
{
|
|
1096
1300
|
"id": "buildchain-patrol-daily",
|
|
@@ -1104,7 +1308,14 @@
|
|
|
1104
1308
|
"outputCount": 0,
|
|
1105
1309
|
"surface": "repository-patrol",
|
|
1106
1310
|
"capabilityGroup": "governance-versioning",
|
|
1107
|
-
"status": "active"
|
|
1311
|
+
"status": "active",
|
|
1312
|
+
"owner": "buildchain-workflows",
|
|
1313
|
+
"maturity": "active",
|
|
1314
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1315
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1316
|
+
"deprecationReplacement": "",
|
|
1317
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1318
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1108
1319
|
},
|
|
1109
1320
|
{
|
|
1110
1321
|
"id": "buildchain-patrol-monthly",
|
|
@@ -1118,7 +1329,14 @@
|
|
|
1118
1329
|
"outputCount": 0,
|
|
1119
1330
|
"surface": "repository-patrol",
|
|
1120
1331
|
"capabilityGroup": "governance-versioning",
|
|
1121
|
-
"status": "active"
|
|
1332
|
+
"status": "active",
|
|
1333
|
+
"owner": "buildchain-workflows",
|
|
1334
|
+
"maturity": "active",
|
|
1335
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1336
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1337
|
+
"deprecationReplacement": "",
|
|
1338
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1339
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1122
1340
|
},
|
|
1123
1341
|
{
|
|
1124
1342
|
"id": "buildchain-patrol-weekly",
|
|
@@ -1132,7 +1350,14 @@
|
|
|
1132
1350
|
"outputCount": 0,
|
|
1133
1351
|
"surface": "repository-patrol",
|
|
1134
1352
|
"capabilityGroup": "governance-versioning",
|
|
1135
|
-
"status": "active"
|
|
1353
|
+
"status": "active",
|
|
1354
|
+
"owner": "buildchain-workflows",
|
|
1355
|
+
"maturity": "active",
|
|
1356
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1357
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1358
|
+
"deprecationReplacement": "",
|
|
1359
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1360
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1136
1361
|
},
|
|
1137
1362
|
{
|
|
1138
1363
|
"id": "buildchain-patrol",
|
|
@@ -1171,7 +1396,14 @@
|
|
|
1171
1396
|
"outputCount": 5,
|
|
1172
1397
|
"surface": "repository-patrol",
|
|
1173
1398
|
"capabilityGroup": "governance-versioning",
|
|
1174
|
-
"status": "active"
|
|
1399
|
+
"status": "active",
|
|
1400
|
+
"owner": "buildchain-workflows",
|
|
1401
|
+
"maturity": "active",
|
|
1402
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1403
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1404
|
+
"deprecationReplacement": "",
|
|
1405
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1406
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1175
1407
|
},
|
|
1176
1408
|
{
|
|
1177
1409
|
"id": "buildchain-ref-promotion",
|
|
@@ -1185,7 +1417,14 @@
|
|
|
1185
1417
|
"outputCount": 0,
|
|
1186
1418
|
"surface": "release-governance",
|
|
1187
1419
|
"capabilityGroup": "release-passport-trust",
|
|
1188
|
-
"status": "active"
|
|
1420
|
+
"status": "active",
|
|
1421
|
+
"owner": "buildchain-workflows",
|
|
1422
|
+
"maturity": "active",
|
|
1423
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1424
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1425
|
+
"deprecationReplacement": "",
|
|
1426
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1427
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1189
1428
|
},
|
|
1190
1429
|
{
|
|
1191
1430
|
"id": "buildchain-stable-candidate-patrol",
|
|
@@ -1199,7 +1438,14 @@
|
|
|
1199
1438
|
"outputCount": 0,
|
|
1200
1439
|
"surface": "repository-patrol",
|
|
1201
1440
|
"capabilityGroup": "governance-versioning",
|
|
1202
|
-
"status": "active"
|
|
1441
|
+
"status": "active",
|
|
1442
|
+
"owner": "buildchain-workflows",
|
|
1443
|
+
"maturity": "active",
|
|
1444
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1445
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1446
|
+
"deprecationReplacement": "",
|
|
1447
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1448
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1203
1449
|
},
|
|
1204
1450
|
{
|
|
1205
1451
|
"id": "buildchain-stable-candidate-qualification",
|
|
@@ -1213,7 +1459,14 @@
|
|
|
1213
1459
|
"outputCount": 0,
|
|
1214
1460
|
"surface": "repository-patrol",
|
|
1215
1461
|
"capabilityGroup": "api-cli-reference",
|
|
1216
|
-
"status": "repository-internal"
|
|
1462
|
+
"status": "repository-internal",
|
|
1463
|
+
"owner": "buildchain-workflows",
|
|
1464
|
+
"maturity": "repository-internal",
|
|
1465
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1466
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1467
|
+
"deprecationReplacement": "",
|
|
1468
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1469
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1217
1470
|
},
|
|
1218
1471
|
{
|
|
1219
1472
|
"id": "candidate-lab",
|
|
@@ -1227,7 +1480,14 @@
|
|
|
1227
1480
|
"outputCount": 0,
|
|
1228
1481
|
"surface": "repository-workflow",
|
|
1229
1482
|
"capabilityGroup": "api-cli-reference",
|
|
1230
|
-
"status": "repository-internal"
|
|
1483
|
+
"status": "repository-internal",
|
|
1484
|
+
"owner": "buildchain-workflows",
|
|
1485
|
+
"maturity": "repository-internal",
|
|
1486
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1487
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1488
|
+
"deprecationReplacement": "",
|
|
1489
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1490
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1231
1491
|
},
|
|
1232
1492
|
{
|
|
1233
1493
|
"id": "check",
|
|
@@ -1257,7 +1517,14 @@
|
|
|
1257
1517
|
"outputCount": 7,
|
|
1258
1518
|
"surface": "repository-workflow",
|
|
1259
1519
|
"capabilityGroup": "api-cli-reference",
|
|
1260
|
-
"status": "active"
|
|
1520
|
+
"status": "active",
|
|
1521
|
+
"owner": "buildchain-workflows",
|
|
1522
|
+
"maturity": "active",
|
|
1523
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1524
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1525
|
+
"deprecationReplacement": "",
|
|
1526
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1527
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1261
1528
|
},
|
|
1262
1529
|
{
|
|
1263
1530
|
"id": "dev-alpha-candidate-patrol",
|
|
@@ -1272,11 +1539,13 @@
|
|
|
1272
1539
|
"dry-run",
|
|
1273
1540
|
"max-age-seconds",
|
|
1274
1541
|
"pull-request-body-prefix",
|
|
1542
|
+
"pull-request-body-prefix-renderer",
|
|
1543
|
+
"reactivation-authorized",
|
|
1275
1544
|
"settlement-authorized",
|
|
1276
1545
|
"source-branch",
|
|
1277
1546
|
"target-branch"
|
|
1278
1547
|
],
|
|
1279
|
-
"inputCount":
|
|
1548
|
+
"inputCount": 13,
|
|
1280
1549
|
"secrets": [
|
|
1281
1550
|
"promotion-token"
|
|
1282
1551
|
],
|
|
@@ -1286,16 +1555,24 @@
|
|
|
1286
1555
|
"controller-state",
|
|
1287
1556
|
"eligible",
|
|
1288
1557
|
"next-candidate-sha",
|
|
1558
|
+
"prior-state-root",
|
|
1289
1559
|
"promotion-pr",
|
|
1290
1560
|
"result-path",
|
|
1291
1561
|
"selected-sha",
|
|
1292
1562
|
"settlement-action",
|
|
1293
1563
|
"source-lock-ref"
|
|
1294
1564
|
],
|
|
1295
|
-
"outputCount":
|
|
1565
|
+
"outputCount": 10,
|
|
1296
1566
|
"surface": "repository-patrol",
|
|
1297
1567
|
"capabilityGroup": "governance-versioning",
|
|
1298
|
-
"status": "active"
|
|
1568
|
+
"status": "active",
|
|
1569
|
+
"owner": "buildchain-workflows",
|
|
1570
|
+
"maturity": "active",
|
|
1571
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1572
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1573
|
+
"deprecationReplacement": "",
|
|
1574
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1575
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1299
1576
|
},
|
|
1300
1577
|
{
|
|
1301
1578
|
"id": "dev-merge-queue-governance",
|
|
@@ -1309,7 +1586,14 @@
|
|
|
1309
1586
|
"outputCount": 0,
|
|
1310
1587
|
"surface": "repository-workflow",
|
|
1311
1588
|
"capabilityGroup": "api-cli-reference",
|
|
1312
|
-
"status": "active"
|
|
1589
|
+
"status": "active",
|
|
1590
|
+
"owner": "buildchain-workflows",
|
|
1591
|
+
"maturity": "active",
|
|
1592
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1593
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1594
|
+
"deprecationReplacement": "",
|
|
1595
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1596
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1313
1597
|
},
|
|
1314
1598
|
{
|
|
1315
1599
|
"id": "dev-pr-auto-merge",
|
|
@@ -1346,7 +1630,14 @@
|
|
|
1346
1630
|
"outputCount": 6,
|
|
1347
1631
|
"surface": "dev-governance",
|
|
1348
1632
|
"capabilityGroup": "governance-versioning",
|
|
1349
|
-
"status": "active"
|
|
1633
|
+
"status": "active",
|
|
1634
|
+
"owner": "buildchain-workflows",
|
|
1635
|
+
"maturity": "active",
|
|
1636
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1637
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1638
|
+
"deprecationReplacement": "",
|
|
1639
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1640
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1350
1641
|
},
|
|
1351
1642
|
{
|
|
1352
1643
|
"id": "github-artifact-attestation",
|
|
@@ -1380,7 +1671,14 @@
|
|
|
1380
1671
|
"outputCount": 5,
|
|
1381
1672
|
"surface": "release-passport",
|
|
1382
1673
|
"capabilityGroup": "release-passport-trust",
|
|
1383
|
-
"status": "active"
|
|
1674
|
+
"status": "active",
|
|
1675
|
+
"owner": "buildchain-workflows",
|
|
1676
|
+
"maturity": "active",
|
|
1677
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1678
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1679
|
+
"deprecationReplacement": "",
|
|
1680
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1681
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1384
1682
|
},
|
|
1385
1683
|
{
|
|
1386
1684
|
"id": "github-governance-audit",
|
|
@@ -1394,7 +1692,14 @@
|
|
|
1394
1692
|
"outputCount": 0,
|
|
1395
1693
|
"surface": "dev-governance",
|
|
1396
1694
|
"capabilityGroup": "api-cli-reference",
|
|
1397
|
-
"status": "active"
|
|
1695
|
+
"status": "active",
|
|
1696
|
+
"owner": "buildchain-workflows",
|
|
1697
|
+
"maturity": "active",
|
|
1698
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1699
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1700
|
+
"deprecationReplacement": "",
|
|
1701
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1702
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1398
1703
|
},
|
|
1399
1704
|
{
|
|
1400
1705
|
"id": "npm-publish",
|
|
@@ -1408,7 +1713,14 @@
|
|
|
1408
1713
|
"outputCount": 0,
|
|
1409
1714
|
"surface": "repository-workflow",
|
|
1410
1715
|
"capabilityGroup": "api-cli-reference",
|
|
1411
|
-
"status": "active"
|
|
1716
|
+
"status": "active",
|
|
1717
|
+
"owner": "buildchain-workflows",
|
|
1718
|
+
"maturity": "active",
|
|
1719
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1720
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1721
|
+
"deprecationReplacement": "",
|
|
1722
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1723
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1412
1724
|
},
|
|
1413
1725
|
{
|
|
1414
1726
|
"id": "paper-release-sealed",
|
|
@@ -1444,9 +1756,13 @@
|
|
|
1444
1756
|
],
|
|
1445
1757
|
"inputCount": 26,
|
|
1446
1758
|
"secrets": [
|
|
1447
|
-
"
|
|
1759
|
+
"BUILDCHAIN_GENERATED_WRITE_APP_CLIENT_ID",
|
|
1760
|
+
"BUILDCHAIN_GENERATED_WRITE_APP_PRIVATE_KEY",
|
|
1761
|
+
"BUILDCHAIN_GENERATED_WRITE_TOKEN",
|
|
1762
|
+
"BUILDCHAIN_PROMOTION_TOKEN",
|
|
1763
|
+
"KUNGFU_GOVERNANCE_AUDITOR_APP_PRIVATE_KEY"
|
|
1448
1764
|
],
|
|
1449
|
-
"secretCount":
|
|
1765
|
+
"secretCount": 5,
|
|
1450
1766
|
"outputs": [
|
|
1451
1767
|
"github-release-url",
|
|
1452
1768
|
"package-name",
|
|
@@ -1457,7 +1773,14 @@
|
|
|
1457
1773
|
"outputCount": 5,
|
|
1458
1774
|
"surface": "repository-workflow",
|
|
1459
1775
|
"capabilityGroup": "api-cli-reference",
|
|
1460
|
-
"status": "active"
|
|
1776
|
+
"status": "active",
|
|
1777
|
+
"owner": "buildchain-workflows",
|
|
1778
|
+
"maturity": "active",
|
|
1779
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1780
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1781
|
+
"deprecationReplacement": "",
|
|
1782
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1783
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1461
1784
|
},
|
|
1462
1785
|
{
|
|
1463
1786
|
"id": "paper-release",
|
|
@@ -1523,7 +1846,14 @@
|
|
|
1523
1846
|
"outputCount": 12,
|
|
1524
1847
|
"surface": "reusable-build",
|
|
1525
1848
|
"capabilityGroup": "reusable-build",
|
|
1526
|
-
"status": "active"
|
|
1849
|
+
"status": "active",
|
|
1850
|
+
"owner": "buildchain-workflows",
|
|
1851
|
+
"maturity": "active",
|
|
1852
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1853
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1854
|
+
"deprecationReplacement": "",
|
|
1855
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1856
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1527
1857
|
},
|
|
1528
1858
|
{
|
|
1529
1859
|
"id": "patrol-daily",
|
|
@@ -1559,7 +1889,14 @@
|
|
|
1559
1889
|
"outputCount": 5,
|
|
1560
1890
|
"surface": "repository-patrol",
|
|
1561
1891
|
"capabilityGroup": "governance-versioning",
|
|
1562
|
-
"status": "active"
|
|
1892
|
+
"status": "active",
|
|
1893
|
+
"owner": "buildchain-workflows",
|
|
1894
|
+
"maturity": "active",
|
|
1895
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1896
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1897
|
+
"deprecationReplacement": "",
|
|
1898
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1899
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1563
1900
|
},
|
|
1564
1901
|
{
|
|
1565
1902
|
"id": "patrol-monthly",
|
|
@@ -1586,7 +1923,14 @@
|
|
|
1586
1923
|
"outputCount": 5,
|
|
1587
1924
|
"surface": "repository-patrol",
|
|
1588
1925
|
"capabilityGroup": "governance-versioning",
|
|
1589
|
-
"status": "active"
|
|
1926
|
+
"status": "active",
|
|
1927
|
+
"owner": "buildchain-workflows",
|
|
1928
|
+
"maturity": "active",
|
|
1929
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1930
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1931
|
+
"deprecationReplacement": "",
|
|
1932
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1933
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1590
1934
|
},
|
|
1591
1935
|
{
|
|
1592
1936
|
"id": "patrol-observed-evidence",
|
|
@@ -1615,7 +1959,14 @@
|
|
|
1615
1959
|
"outputCount": 1,
|
|
1616
1960
|
"surface": "repository-patrol",
|
|
1617
1961
|
"capabilityGroup": "governance-versioning",
|
|
1618
|
-
"status": "active"
|
|
1962
|
+
"status": "active",
|
|
1963
|
+
"owner": "buildchain-workflows",
|
|
1964
|
+
"maturity": "active",
|
|
1965
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1966
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1967
|
+
"deprecationReplacement": "",
|
|
1968
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1969
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1619
1970
|
},
|
|
1620
1971
|
{
|
|
1621
1972
|
"id": "patrol-weekly",
|
|
@@ -1642,7 +1993,14 @@
|
|
|
1642
1993
|
"outputCount": 5,
|
|
1643
1994
|
"surface": "repository-patrol",
|
|
1644
1995
|
"capabilityGroup": "governance-versioning",
|
|
1645
|
-
"status": "active"
|
|
1996
|
+
"status": "active",
|
|
1997
|
+
"owner": "buildchain-workflows",
|
|
1998
|
+
"maturity": "active",
|
|
1999
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2000
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2001
|
+
"deprecationReplacement": "",
|
|
2002
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2003
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1646
2004
|
},
|
|
1647
2005
|
{
|
|
1648
2006
|
"id": "publication-artifact",
|
|
@@ -1695,7 +2053,14 @@
|
|
|
1695
2053
|
"outputCount": 16,
|
|
1696
2054
|
"surface": "repository-workflow",
|
|
1697
2055
|
"capabilityGroup": "reusable-build",
|
|
1698
|
-
"status": "active"
|
|
2056
|
+
"status": "active",
|
|
2057
|
+
"owner": "buildchain-workflows",
|
|
2058
|
+
"maturity": "active",
|
|
2059
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2060
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2061
|
+
"deprecationReplacement": "",
|
|
2062
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2063
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1699
2064
|
},
|
|
1700
2065
|
{
|
|
1701
2066
|
"id": "release-candidate-promote",
|
|
@@ -1756,11 +2121,17 @@
|
|
|
1756
2121
|
"publish-transaction-override",
|
|
1757
2122
|
"release-activation-command",
|
|
1758
2123
|
"release-activation-receipt-set-path",
|
|
2124
|
+
"release-candidate-family-assignment-id",
|
|
2125
|
+
"release-candidate-family-evidence-required",
|
|
2126
|
+
"release-candidate-family-evidence-root",
|
|
2127
|
+
"release-candidate-family-initiative-id",
|
|
1759
2128
|
"release-candidate-workflow-file",
|
|
1760
2129
|
"release-candidate-workflow-name",
|
|
1761
2130
|
"release-passport",
|
|
2131
|
+
"release-passport-attachment-command",
|
|
1762
2132
|
"release-passport-buildchain-self-kfd",
|
|
1763
2133
|
"release-passport-evidence-command",
|
|
2134
|
+
"release-passport-evidence-jsons",
|
|
1764
2135
|
"release-passport-evidence-path",
|
|
1765
2136
|
"release-passport-impact-json",
|
|
1766
2137
|
"release-passport-invariant-passport-command",
|
|
@@ -1783,7 +2154,7 @@
|
|
|
1783
2154
|
"target-sha",
|
|
1784
2155
|
"trusted-publishing"
|
|
1785
2156
|
],
|
|
1786
|
-
"inputCount":
|
|
2157
|
+
"inputCount": 86,
|
|
1787
2158
|
"secrets": [
|
|
1788
2159
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
1789
2160
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -1833,7 +2204,14 @@
|
|
|
1833
2204
|
"outputCount": 31,
|
|
1834
2205
|
"surface": "release-governance",
|
|
1835
2206
|
"capabilityGroup": "reusable-build",
|
|
1836
|
-
"status": "active"
|
|
2207
|
+
"status": "active",
|
|
2208
|
+
"owner": "buildchain-workflows",
|
|
2209
|
+
"maturity": "active",
|
|
2210
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2211
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2212
|
+
"deprecationReplacement": "",
|
|
2213
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2214
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1837
2215
|
},
|
|
1838
2216
|
{
|
|
1839
2217
|
"id": "release-governance-reconcile",
|
|
@@ -1855,7 +2233,14 @@
|
|
|
1855
2233
|
"outputCount": 0,
|
|
1856
2234
|
"surface": "release-governance",
|
|
1857
2235
|
"capabilityGroup": "api-cli-reference",
|
|
1858
|
-
"status": "active"
|
|
2236
|
+
"status": "active",
|
|
2237
|
+
"owner": "buildchain-workflows",
|
|
2238
|
+
"maturity": "active",
|
|
2239
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2240
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2241
|
+
"deprecationReplacement": "",
|
|
2242
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2243
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1859
2244
|
},
|
|
1860
2245
|
{
|
|
1861
2246
|
"id": "release-line-bootstrap",
|
|
@@ -1869,7 +2254,14 @@
|
|
|
1869
2254
|
"outputCount": 0,
|
|
1870
2255
|
"surface": "release-governance",
|
|
1871
2256
|
"capabilityGroup": "release-passport-trust",
|
|
1872
|
-
"status": "active"
|
|
2257
|
+
"status": "active",
|
|
2258
|
+
"owner": "buildchain-workflows",
|
|
2259
|
+
"maturity": "active",
|
|
2260
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2261
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2262
|
+
"deprecationReplacement": "",
|
|
2263
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2264
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1873
2265
|
},
|
|
1874
2266
|
{
|
|
1875
2267
|
"id": "release-new-version",
|
|
@@ -1883,7 +2275,14 @@
|
|
|
1883
2275
|
"outputCount": 0,
|
|
1884
2276
|
"surface": "repository-workflow",
|
|
1885
2277
|
"capabilityGroup": "api-cli-reference",
|
|
1886
|
-
"status": "active"
|
|
2278
|
+
"status": "active",
|
|
2279
|
+
"owner": "buildchain-workflows",
|
|
2280
|
+
"maturity": "active",
|
|
2281
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2282
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2283
|
+
"deprecationReplacement": "",
|
|
2284
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2285
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1887
2286
|
},
|
|
1888
2287
|
{
|
|
1889
2288
|
"id": "release-propagation",
|
|
@@ -1897,6 +2296,7 @@
|
|
|
1897
2296
|
"downstream-prepare-command",
|
|
1898
2297
|
"downstream-repository",
|
|
1899
2298
|
"downstream-target",
|
|
2299
|
+
"downstream-update-command",
|
|
1900
2300
|
"downstream-verify-command",
|
|
1901
2301
|
"dry-run",
|
|
1902
2302
|
"graph-json",
|
|
@@ -1907,7 +2307,7 @@
|
|
|
1907
2307
|
"source-node",
|
|
1908
2308
|
"upstream-release-json"
|
|
1909
2309
|
],
|
|
1910
|
-
"inputCount":
|
|
2310
|
+
"inputCount": 17,
|
|
1911
2311
|
"secrets": [
|
|
1912
2312
|
"propagation-token"
|
|
1913
2313
|
],
|
|
@@ -1919,12 +2319,21 @@
|
|
|
1919
2319
|
"controller-receipt-artifact",
|
|
1920
2320
|
"controller-receipt-digest",
|
|
1921
2321
|
"controller-receipt-json",
|
|
1922
|
-
"controller-receipt-status"
|
|
2322
|
+
"controller-receipt-status",
|
|
2323
|
+
"propagation-receipt-digest",
|
|
2324
|
+
"propagation-receipt-json"
|
|
1923
2325
|
],
|
|
1924
|
-
"outputCount":
|
|
2326
|
+
"outputCount": 9,
|
|
1925
2327
|
"surface": "release-propagation",
|
|
1926
2328
|
"capabilityGroup": "site-and-propagation",
|
|
1927
|
-
"status": "preview"
|
|
2329
|
+
"status": "preview",
|
|
2330
|
+
"owner": "buildchain-workflows",
|
|
2331
|
+
"maturity": "preview",
|
|
2332
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2333
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2334
|
+
"deprecationReplacement": "",
|
|
2335
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2336
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1928
2337
|
},
|
|
1929
2338
|
{
|
|
1930
2339
|
"id": "release-verify",
|
|
@@ -1938,7 +2347,14 @@
|
|
|
1938
2347
|
"outputCount": 0,
|
|
1939
2348
|
"surface": "repository-workflow",
|
|
1940
2349
|
"capabilityGroup": "api-cli-reference",
|
|
1941
|
-
"status": "active"
|
|
2350
|
+
"status": "active",
|
|
2351
|
+
"owner": "buildchain-workflows",
|
|
2352
|
+
"maturity": "active",
|
|
2353
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2354
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2355
|
+
"deprecationReplacement": "",
|
|
2356
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2357
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1942
2358
|
},
|
|
1943
2359
|
{
|
|
1944
2360
|
"id": "schedule-purge-artifacts",
|
|
@@ -1952,7 +2368,14 @@
|
|
|
1952
2368
|
"outputCount": 0,
|
|
1953
2369
|
"surface": "repository-workflow",
|
|
1954
2370
|
"capabilityGroup": "api-cli-reference",
|
|
1955
|
-
"status": "active"
|
|
2371
|
+
"status": "active",
|
|
2372
|
+
"owner": "buildchain-workflows",
|
|
2373
|
+
"maturity": "active",
|
|
2374
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2375
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2376
|
+
"deprecationReplacement": "",
|
|
2377
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2378
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1956
2379
|
},
|
|
1957
2380
|
{
|
|
1958
2381
|
"id": "self-hosted-runner-smoke",
|
|
@@ -1966,7 +2389,14 @@
|
|
|
1966
2389
|
"outputCount": 0,
|
|
1967
2390
|
"surface": "repository-workflow",
|
|
1968
2391
|
"capabilityGroup": "api-cli-reference",
|
|
1969
|
-
"status": "compatibility-fixture"
|
|
2392
|
+
"status": "compatibility-fixture",
|
|
2393
|
+
"owner": "buildchain-workflows",
|
|
2394
|
+
"maturity": "compatibility-fixture",
|
|
2395
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2396
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2397
|
+
"deprecationReplacement": "",
|
|
2398
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2399
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1970
2400
|
},
|
|
1971
2401
|
{
|
|
1972
2402
|
"id": "stable-candidate-patrol",
|
|
@@ -2006,7 +2436,14 @@
|
|
|
2006
2436
|
"outputCount": 6,
|
|
2007
2437
|
"surface": "repository-patrol",
|
|
2008
2438
|
"capabilityGroup": "governance-versioning",
|
|
2009
|
-
"status": "active"
|
|
2439
|
+
"status": "active",
|
|
2440
|
+
"owner": "buildchain-workflows",
|
|
2441
|
+
"maturity": "active",
|
|
2442
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2443
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2444
|
+
"deprecationReplacement": "",
|
|
2445
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2446
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
2010
2447
|
},
|
|
2011
2448
|
{
|
|
2012
2449
|
"id": "verify",
|
|
@@ -2020,7 +2457,14 @@
|
|
|
2020
2457
|
"outputCount": 0,
|
|
2021
2458
|
"surface": "repository-workflow",
|
|
2022
2459
|
"capabilityGroup": "api-cli-reference",
|
|
2023
|
-
"status": "active"
|
|
2460
|
+
"status": "active",
|
|
2461
|
+
"owner": "buildchain-workflows",
|
|
2462
|
+
"maturity": "active",
|
|
2463
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2464
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2465
|
+
"deprecationReplacement": "",
|
|
2466
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2467
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
2024
2468
|
}
|
|
2025
2469
|
],
|
|
2026
2470
|
"actionSource": "actions/*/action.yml reverse input enumeration",
|
|
@@ -2045,12 +2489,20 @@
|
|
|
2045
2489
|
],
|
|
2046
2490
|
"inputCount": 13,
|
|
2047
2491
|
"capabilityGroup": "release-passport-trust",
|
|
2048
|
-
"status": "active"
|
|
2492
|
+
"status": "active",
|
|
2493
|
+
"owner": "buildchain-actions",
|
|
2494
|
+
"maturity": "stable",
|
|
2495
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2496
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2497
|
+
"deprecationReplacement": "",
|
|
2498
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2499
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2049
2500
|
},
|
|
2050
2501
|
{
|
|
2051
2502
|
"id": "macos-credential-island",
|
|
2052
2503
|
"path": "actions/macos-credential-island/action.yml",
|
|
2053
2504
|
"inputs": [
|
|
2505
|
+
"artifact-id",
|
|
2054
2506
|
"artifact-name",
|
|
2055
2507
|
"artifact-relative-output",
|
|
2056
2508
|
"artifact-stem",
|
|
@@ -2072,9 +2524,16 @@
|
|
|
2072
2524
|
"source-sha",
|
|
2073
2525
|
"source-tree-sha"
|
|
2074
2526
|
],
|
|
2075
|
-
"inputCount":
|
|
2527
|
+
"inputCount": 21,
|
|
2076
2528
|
"capabilityGroup": "api-cli-reference",
|
|
2077
|
-
"status": "active"
|
|
2529
|
+
"status": "active",
|
|
2530
|
+
"owner": "buildchain-actions",
|
|
2531
|
+
"maturity": "stable",
|
|
2532
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2533
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2534
|
+
"deprecationReplacement": "",
|
|
2535
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2536
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2078
2537
|
},
|
|
2079
2538
|
{
|
|
2080
2539
|
"id": "promote-buildchain-ref",
|
|
@@ -2107,6 +2566,8 @@
|
|
|
2107
2566
|
"publish-package-set-order",
|
|
2108
2567
|
"publish-rematerialize-on-resume",
|
|
2109
2568
|
"publish-required-artifacts-json",
|
|
2569
|
+
"publish-sealed-bundle-manifest",
|
|
2570
|
+
"publish-sealed-bundle-root",
|
|
2110
2571
|
"publish-source-locked",
|
|
2111
2572
|
"publish-source-ref",
|
|
2112
2573
|
"publish-source-sha",
|
|
@@ -2115,12 +2576,19 @@
|
|
|
2115
2576
|
"publish-transaction-override",
|
|
2116
2577
|
"reconciliation-workspace",
|
|
2117
2578
|
"release-candidate-build-summary-path",
|
|
2579
|
+
"release-candidate-family-assignment-id",
|
|
2580
|
+
"release-candidate-family-evidence-required",
|
|
2581
|
+
"release-candidate-family-evidence-root",
|
|
2582
|
+
"release-candidate-family-initiative-id",
|
|
2118
2583
|
"release-candidate-passport-path",
|
|
2119
2584
|
"release-candidate-version",
|
|
2120
2585
|
"release-material-sha",
|
|
2121
2586
|
"release-passport",
|
|
2587
|
+
"release-passport-attachment-command",
|
|
2122
2588
|
"release-passport-build-summary-path",
|
|
2123
2589
|
"release-passport-buildchain-self-kfd",
|
|
2590
|
+
"release-passport-evidence-command",
|
|
2591
|
+
"release-passport-evidence-jsons",
|
|
2124
2592
|
"release-passport-github-artifact-attestation-policy-jsons",
|
|
2125
2593
|
"release-passport-impact-json",
|
|
2126
2594
|
"release-passport-invariant-passport-command",
|
|
@@ -2148,9 +2616,16 @@
|
|
|
2148
2616
|
"transaction-state-path",
|
|
2149
2617
|
"verification-command"
|
|
2150
2618
|
],
|
|
2151
|
-
"inputCount":
|
|
2619
|
+
"inputCount": 76,
|
|
2152
2620
|
"capabilityGroup": "release-passport-trust",
|
|
2153
|
-
"status": "active"
|
|
2621
|
+
"status": "active",
|
|
2622
|
+
"owner": "buildchain-actions",
|
|
2623
|
+
"maturity": "stable",
|
|
2624
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2625
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2626
|
+
"deprecationReplacement": "",
|
|
2627
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2628
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2154
2629
|
},
|
|
2155
2630
|
{
|
|
2156
2631
|
"id": "report-buildchain-issue",
|
|
@@ -2202,7 +2677,14 @@
|
|
|
2202
2677
|
],
|
|
2203
2678
|
"inputCount": 43,
|
|
2204
2679
|
"capabilityGroup": "observability-diagnostics",
|
|
2205
|
-
"status": "active"
|
|
2680
|
+
"status": "active",
|
|
2681
|
+
"owner": "buildchain-actions",
|
|
2682
|
+
"maturity": "stable",
|
|
2683
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2684
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2685
|
+
"deprecationReplacement": "",
|
|
2686
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2687
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2206
2688
|
},
|
|
2207
2689
|
{
|
|
2208
2690
|
"id": "run-lifecycle",
|
|
@@ -2232,7 +2714,14 @@
|
|
|
2232
2714
|
],
|
|
2233
2715
|
"inputCount": 21,
|
|
2234
2716
|
"capabilityGroup": "reusable-build",
|
|
2235
|
-
"status": "active"
|
|
2717
|
+
"status": "active",
|
|
2718
|
+
"owner": "buildchain-actions",
|
|
2719
|
+
"maturity": "stable",
|
|
2720
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2721
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2722
|
+
"deprecationReplacement": "",
|
|
2723
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2724
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2236
2725
|
},
|
|
2237
2726
|
{
|
|
2238
2727
|
"id": "validate-config",
|
|
@@ -2244,7 +2733,14 @@
|
|
|
2244
2733
|
],
|
|
2245
2734
|
"inputCount": 3,
|
|
2246
2735
|
"capabilityGroup": "reusable-build",
|
|
2247
|
-
"status": "active"
|
|
2736
|
+
"status": "active",
|
|
2737
|
+
"owner": "buildchain-actions",
|
|
2738
|
+
"maturity": "stable",
|
|
2739
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2740
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2741
|
+
"deprecationReplacement": "",
|
|
2742
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2743
|
+
"nonDuplicationRationale": "Existing action identity retained as the canonical composite or JavaScript action boundary."
|
|
2248
2744
|
}
|
|
2249
2745
|
]
|
|
2250
2746
|
}
|