@kungfu-tech/buildchain 4.1.3-alpha.4 → 4.1.3-alpha.6
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 +41 -75
- package/CONTRIBUTING.md +19 -26
- package/architecture/agent-change-map.md +8 -12
- package/architecture/capability-state-machine-manifest.json +1 -4
- package/architecture/ci-lane-change-budget.json +35 -1026
- package/architecture/core-mechanisms.json +3 -6
- package/architecture/internal-capabilities.json +1 -5
- package/architecture/maintainability-debt.json +44 -36
- package/architecture/maintainability-policy.json +8 -8
- package/architecture/minimal-consumer-migration.json +80 -1977
- package/architecture/platform-stage-checkpoints.json +31 -7
- package/architecture/release-topology.json +64 -84
- package/architecture/stage-capsule-qualification.json +3 -1
- package/architecture/universal-workflow-bootstrap.json +3 -1
- package/architecture/universal-workflow-capability-policy.json +4 -4
- package/architecture/universal-workflow-fault-campaign.json +3 -1
- package/architecture/workflow-taxonomy.json +24 -341
- package/dist/site/buildchain-contract.json +13 -67
- package/dist/site/buildchain-site.json +33 -23
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/controller-registry.json +1 -47
- package/dist/site/kfd-claims.json +78 -448
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +24 -24
- package/dist/site/page-registry.json +26 -16
- package/dist/site/public-surface-audit.json +35 -349
- package/dist/site/publication-authority-registry.json +51 -511
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +263 -1128
- package/docs/code-organization.md +9 -6
- package/docs/node-api-reference.md +57 -57
- package/docs/release-governance.md +10 -12
- package/docs/runtime-entry.md +31 -3
- package/docs/runtime-train-validation.md +39 -11
- package/docs/stable-candidate-patrol.md +6 -5
- package/docs/workflow-catalog.md +3 -32
- package/package.json +1 -1
- package/packages/core/adoption/buildchain-kfd-claims.js +7 -7
- package/packages/core/dev-delivery/dev-delivery-provider-heartbeat.js +18 -15
- package/packages/core/dev-delivery/native/actions.js +2 -0
- package/packages/core/dev-delivery/native/process-entry.js +19 -0
- package/packages/core/dev-delivery/queue/landing-action.js +49 -1
- package/packages/core/dev-delivery/warrant/failure-settlement.js +8 -6
- package/packages/core/dev-delivery/warrant/service.js +7 -0
- package/packages/core/governance/buildchain-publication-authority.js +2 -23
- package/packages/core/governance/github-governance-authority.js +1 -0
- package/packages/core/observability/controller-evidence.js +0 -8
- package/packages/core/providers/github/pipeline-entry-runs.js +8 -1
- package/packages/core/providers/github/pipeline-events.js +79 -0
- package/packages/core/providers/github/pipeline-source.js +24 -7
- package/packages/core/publication/pipeline/pack.js +31 -8
- package/packages/core/workflow/pipeline/actions.js +0 -23
- package/packages/core/workflow/pipeline/build-evidence.js +123 -5
- package/packages/core/workflow/pipeline/build-result.js +1 -0
- package/packages/core/workflow/pipeline/channel-control.js +25 -4
- package/packages/core/workflow/pipeline/controller.js +9 -1
- package/packages/core/workflow/pipeline/delivery-control.js +54 -9
- package/packages/core/workflow/pipeline/delivery-observation.js +16 -10
- package/packages/core/workflow/pipeline/group-control.js +1 -0
- package/packages/core/workflow/pipeline/guard-build.js +37 -0
- package/packages/core/workflow/pipeline/guard.js +4 -2
- package/packages/core/workflow/pipeline/host.js +23 -1
- package/packages/core/workflow/pipeline/integration-status.js +113 -0
- package/packages/core/workflow/pipeline/record-action.js +27 -0
- package/packages/core/workflow/pipeline/recorder-status.js +69 -0
- package/packages/core/workflow/workflow-taxonomy.mjs +67 -47
- package/scripts/check-inventory.mjs +7 -70
- package/scripts/check-pipeline-publication-topology.mjs +2 -0
- package/scripts/check-public-dogfood-contract.mjs +38 -51
- package/scripts/check-release-topology.mjs +8 -7
- package/scripts/check-self-consumer-contract.mjs +133 -0
- package/scripts/check-universal-workflow-bootstrap.mjs +4 -6
- package/scripts/generate-minimal-consumer-contract.mjs +1 -1
- package/scripts/inventory/binary.mjs +9 -19
- package/scripts/inventory/promotion.mjs +2 -13
- package/scripts/prepare-product-toolchain.mjs +10 -0
- package/scripts/verify-product-platform.mjs +65 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "buildchain.consumer-migration/v1",
|
|
3
|
-
"stage": "
|
|
3
|
+
"stage": "self-cutover-in-progress; final-release-qualification-pending",
|
|
4
4
|
"workflows": [
|
|
5
5
|
{
|
|
6
6
|
"path": ".github/workflows/build.yml",
|
|
@@ -92,6 +92,68 @@
|
|
|
92
92
|
}
|
|
93
93
|
]
|
|
94
94
|
},
|
|
95
|
+
{
|
|
96
|
+
"path": ".github/workflows/buildchain-recover.yml",
|
|
97
|
+
"role": "self",
|
|
98
|
+
"events": ["workflow_dispatch"],
|
|
99
|
+
"secrets": [],
|
|
100
|
+
"outputs": [],
|
|
101
|
+
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
102
|
+
"interfaces": [
|
|
103
|
+
{
|
|
104
|
+
"trigger": "workflow_dispatch",
|
|
105
|
+
"name": "attempt",
|
|
106
|
+
"definition": {
|
|
107
|
+
"description": "Exact Buildchain attempt to recover",
|
|
108
|
+
"required": true,
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"destination": "attempt.material-index"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"trigger": "workflow_dispatch",
|
|
115
|
+
"name": "runtime-ref",
|
|
116
|
+
"definition": {
|
|
117
|
+
"description": "Optional repaired runtime",
|
|
118
|
+
"required": false,
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
"destination": "recovery-entry.runtime-ref"
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"calls": [
|
|
125
|
+
{
|
|
126
|
+
"id": "buildchain",
|
|
127
|
+
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-recover.yml@v4-alpha",
|
|
128
|
+
"inputs": ["attempt", "runtime-ref"],
|
|
129
|
+
"destination": "internal.workflow-composition"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"path": ".github/workflows/buildchain.yml",
|
|
135
|
+
"role": "self",
|
|
136
|
+
"events": [
|
|
137
|
+
"merge_group",
|
|
138
|
+
"pull_request",
|
|
139
|
+
"pull_request_review",
|
|
140
|
+
"pull_request_target",
|
|
141
|
+
"push",
|
|
142
|
+
"repository_dispatch"
|
|
143
|
+
],
|
|
144
|
+
"secrets": [],
|
|
145
|
+
"outputs": [],
|
|
146
|
+
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
147
|
+
"interfaces": [],
|
|
148
|
+
"calls": [
|
|
149
|
+
{
|
|
150
|
+
"id": "buildchain",
|
|
151
|
+
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-pipeline.yml@v4-alpha",
|
|
152
|
+
"inputs": ["config-path"],
|
|
153
|
+
"destination": "internal.workflow-composition"
|
|
154
|
+
}
|
|
155
|
+
]
|
|
156
|
+
},
|
|
95
157
|
{
|
|
96
158
|
"path": ".github/workflows/public-build-adopter-qualification.yml",
|
|
97
159
|
"role": "public",
|
|
@@ -5043,1991 +5105,30 @@
|
|
|
5043
5105
|
"destination": "internal.workflow-composition"
|
|
5044
5106
|
}
|
|
5045
5107
|
]
|
|
5046
|
-
}
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
"role": "self",
|
|
5050
|
-
"events": ["workflow_dispatch"],
|
|
5051
|
-
"secrets": [],
|
|
5052
|
-
"outputs": [],
|
|
5053
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5054
|
-
"interfaces": [],
|
|
5055
|
-
"calls": [
|
|
5056
|
-
{
|
|
5057
|
-
"id": "dogfood",
|
|
5058
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-build-adopter-qualification.yml@v4",
|
|
5059
|
-
"inputs": ["consumer", "input-path"],
|
|
5060
|
-
"destination": "internal.workflow-composition"
|
|
5061
|
-
}
|
|
5062
|
-
]
|
|
5063
|
-
},
|
|
5064
|
-
{
|
|
5065
|
-
"path": ".github/workflows/self-build-alpha-dogfood.yml",
|
|
5066
|
-
"role": "self",
|
|
5067
|
-
"events": ["schedule", "workflow_dispatch", "workflow_run"],
|
|
5068
|
-
"secrets": [],
|
|
5069
|
-
"outputs": [],
|
|
5070
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5071
|
-
"interfaces": [],
|
|
5072
|
-
"calls": [
|
|
5073
|
-
{
|
|
5074
|
-
"id": "alpha-consumer",
|
|
5075
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/build.yml@v4-alpha",
|
|
5076
|
-
"inputs": [],
|
|
5077
|
-
"destination": "internal.workflow-composition"
|
|
5078
|
-
}
|
|
5079
|
-
]
|
|
5080
|
-
},
|
|
5081
|
-
{
|
|
5082
|
-
"path": ".github/workflows/self-build-binary-distribution.yml",
|
|
5083
|
-
"role": "self",
|
|
5084
|
-
"events": ["push", "workflow_dispatch"],
|
|
5085
|
-
"secrets": [],
|
|
5086
|
-
"outputs": [],
|
|
5087
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5088
|
-
"interfaces": [
|
|
5089
|
-
{
|
|
5090
|
-
"trigger": "workflow_dispatch",
|
|
5091
|
-
"name": "tag",
|
|
5092
|
-
"definition": {
|
|
5093
|
-
"description": "Exact v4 release tag; dispatch this workflow at the same tag.",
|
|
5094
|
-
"required": true
|
|
5095
|
-
},
|
|
5096
|
-
"destination": "internal.plan-derived-input"
|
|
5097
|
-
},
|
|
5098
|
-
{
|
|
5099
|
-
"trigger": "workflow_dispatch",
|
|
5100
|
-
"name": "runtime-ref",
|
|
5101
|
-
"definition": {
|
|
5102
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5103
|
-
"type": "string",
|
|
5104
|
-
"required": false,
|
|
5105
|
-
"default": ""
|
|
5106
|
-
},
|
|
5107
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5108
|
-
},
|
|
5109
|
-
{
|
|
5110
|
-
"trigger": "workflow_dispatch",
|
|
5111
|
-
"name": "contract-lock",
|
|
5112
|
-
"definition": {
|
|
5113
|
-
"description": "Optional consumer runtime lock path.",
|
|
5114
|
-
"type": "string",
|
|
5115
|
-
"required": false,
|
|
5116
|
-
"default": ""
|
|
5117
|
-
},
|
|
5118
|
-
"destination": "internal.plan-derived-input"
|
|
5119
|
-
}
|
|
5120
|
-
],
|
|
5121
|
-
"calls": []
|
|
5122
|
-
},
|
|
5123
|
-
{
|
|
5124
|
-
"path": ".github/workflows/self-build-channel-verify.yml",
|
|
5125
|
-
"role": "self",
|
|
5126
|
-
"events": ["pull_request"],
|
|
5127
|
-
"secrets": [],
|
|
5128
|
-
"outputs": [],
|
|
5129
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5130
|
-
"interfaces": [],
|
|
5131
|
-
"calls": []
|
|
5132
|
-
},
|
|
5108
|
+
}
|
|
5109
|
+
],
|
|
5110
|
+
"consumerSources": [
|
|
5133
5111
|
{
|
|
5134
|
-
"path": ".
|
|
5135
|
-
"
|
|
5136
|
-
"
|
|
5137
|
-
"
|
|
5138
|
-
"outputs": [],
|
|
5139
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5140
|
-
"interfaces": [
|
|
5141
|
-
{
|
|
5142
|
-
"trigger": "workflow_dispatch",
|
|
5143
|
-
"name": "mode",
|
|
5144
|
-
"definition": {
|
|
5145
|
-
"description": "Run the required Gate only, or Gate plus native media rendering",
|
|
5146
|
-
"required": true,
|
|
5147
|
-
"default": "full",
|
|
5148
|
-
"type": "choice",
|
|
5149
|
-
"options": ["gate-only", "full"]
|
|
5150
|
-
},
|
|
5151
|
-
"destination": "internal.plan-derived-input"
|
|
5152
|
-
},
|
|
5153
|
-
{
|
|
5154
|
-
"trigger": "workflow_dispatch",
|
|
5155
|
-
"name": "materialize",
|
|
5156
|
-
"definition": {
|
|
5157
|
-
"description": "Open or update the protected README media pull request",
|
|
5158
|
-
"required": true,
|
|
5159
|
-
"default": false,
|
|
5160
|
-
"type": "boolean"
|
|
5161
|
-
},
|
|
5162
|
-
"destination": "internal.plan-derived-input"
|
|
5163
|
-
},
|
|
5164
|
-
{
|
|
5165
|
-
"trigger": "workflow_dispatch",
|
|
5166
|
-
"name": "base-ref",
|
|
5167
|
-
"definition": {
|
|
5168
|
-
"description": "Target branch for the protected README media pull request",
|
|
5169
|
-
"required": true,
|
|
5170
|
-
"default": "dev/v4/v4.1",
|
|
5171
|
-
"type": "string"
|
|
5172
|
-
},
|
|
5173
|
-
"destination": "internal.plan-derived-input"
|
|
5174
|
-
},
|
|
5175
|
-
{
|
|
5176
|
-
"trigger": "workflow_dispatch",
|
|
5177
|
-
"name": "runtime-ref",
|
|
5178
|
-
"definition": {
|
|
5179
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5180
|
-
"type": "string",
|
|
5181
|
-
"required": false,
|
|
5182
|
-
"default": ""
|
|
5183
|
-
},
|
|
5184
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5185
|
-
},
|
|
5186
|
-
{
|
|
5187
|
-
"trigger": "workflow_dispatch",
|
|
5188
|
-
"name": "contract-lock",
|
|
5189
|
-
"definition": {
|
|
5190
|
-
"description": "Optional consumer runtime lock path.",
|
|
5191
|
-
"type": "string",
|
|
5192
|
-
"required": false,
|
|
5193
|
-
"default": ""
|
|
5194
|
-
},
|
|
5195
|
-
"destination": "internal.plan-derived-input"
|
|
5196
|
-
}
|
|
5197
|
-
],
|
|
5198
|
-
"calls": [
|
|
5199
|
-
{
|
|
5200
|
-
"id": "dogfood",
|
|
5201
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-build-demo.yml@v4",
|
|
5202
|
-
"inputs": [
|
|
5203
|
-
"artifact-retention-days",
|
|
5204
|
-
"binary-artifact-digest",
|
|
5205
|
-
"binary-artifact-name",
|
|
5206
|
-
"materialize",
|
|
5207
|
-
"materialize-base-ref",
|
|
5208
|
-
"media-profile",
|
|
5209
|
-
"render-media",
|
|
5210
|
-
"renderer-image",
|
|
5211
|
-
"runtime-selection",
|
|
5212
|
-
"scenario-path",
|
|
5213
|
-
"source-ref"
|
|
5214
|
-
],
|
|
5215
|
-
"destination": "internal.workflow-composition"
|
|
5216
|
-
}
|
|
5217
|
-
]
|
|
5112
|
+
"path": ".buildchain/alpha-contract-lock.json",
|
|
5113
|
+
"kind": "consumer-source",
|
|
5114
|
+
"destination": "retain-product-source; move-orchestration-into-runtime",
|
|
5115
|
+
"commandReferences": []
|
|
5218
5116
|
},
|
|
5219
5117
|
{
|
|
5220
|
-
"path": ".
|
|
5221
|
-
"
|
|
5222
|
-
"
|
|
5223
|
-
"
|
|
5224
|
-
"outputs": [],
|
|
5225
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5226
|
-
"interfaces": [
|
|
5227
|
-
{
|
|
5228
|
-
"trigger": "workflow_dispatch",
|
|
5229
|
-
"name": "runtime-ref",
|
|
5230
|
-
"definition": {
|
|
5231
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5232
|
-
"type": "string",
|
|
5233
|
-
"required": false,
|
|
5234
|
-
"default": ""
|
|
5235
|
-
},
|
|
5236
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5237
|
-
},
|
|
5238
|
-
{
|
|
5239
|
-
"trigger": "workflow_dispatch",
|
|
5240
|
-
"name": "contract-lock",
|
|
5241
|
-
"definition": {
|
|
5242
|
-
"description": "Optional consumer runtime lock path.",
|
|
5243
|
-
"type": "string",
|
|
5244
|
-
"required": false,
|
|
5245
|
-
"default": ""
|
|
5246
|
-
},
|
|
5247
|
-
"destination": "internal.plan-derived-input"
|
|
5248
|
-
}
|
|
5249
|
-
],
|
|
5250
|
-
"calls": []
|
|
5251
|
-
},
|
|
5252
|
-
{
|
|
5253
|
-
"path": ".github/workflows/self-build-fixture.yml",
|
|
5254
|
-
"role": "self",
|
|
5255
|
-
"events": ["pull_request", "workflow_dispatch"],
|
|
5256
|
-
"secrets": [],
|
|
5257
|
-
"outputs": [],
|
|
5258
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5259
|
-
"interfaces": [
|
|
5260
|
-
{
|
|
5261
|
-
"trigger": "workflow_dispatch",
|
|
5262
|
-
"name": "runtime-ref",
|
|
5263
|
-
"definition": {
|
|
5264
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5265
|
-
"type": "string",
|
|
5266
|
-
"required": false,
|
|
5267
|
-
"default": ""
|
|
5268
|
-
},
|
|
5269
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5270
|
-
},
|
|
5271
|
-
{
|
|
5272
|
-
"trigger": "workflow_dispatch",
|
|
5273
|
-
"name": "resume-run-id",
|
|
5274
|
-
"definition": {
|
|
5275
|
-
"description": "Original failed fixture build; preserve its source and valid checkpoints.",
|
|
5276
|
-
"type": "string",
|
|
5277
|
-
"required": false,
|
|
5278
|
-
"default": ""
|
|
5279
|
-
},
|
|
5280
|
-
"destination": "attempt.material-index"
|
|
5281
|
-
},
|
|
5282
|
-
{
|
|
5283
|
-
"trigger": "workflow_dispatch",
|
|
5284
|
-
"name": "contract-lock",
|
|
5285
|
-
"definition": {
|
|
5286
|
-
"description": "Optional consumer runtime lock path.",
|
|
5287
|
-
"type": "string",
|
|
5288
|
-
"required": false,
|
|
5289
|
-
"default": ""
|
|
5290
|
-
},
|
|
5291
|
-
"destination": "internal.plan-derived-input"
|
|
5292
|
-
}
|
|
5293
|
-
],
|
|
5294
|
-
"calls": [
|
|
5295
|
-
{
|
|
5296
|
-
"id": "libnode-shaped",
|
|
5297
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/build.yml@v4",
|
|
5298
|
-
"inputs": ["config-path", "runtime-selection"],
|
|
5299
|
-
"destination": "internal.workflow-composition"
|
|
5300
|
-
}
|
|
5301
|
-
]
|
|
5302
|
-
},
|
|
5303
|
-
{
|
|
5304
|
-
"path": ".github/workflows/self-build-public-consumer-dogfood.yml",
|
|
5305
|
-
"role": "self",
|
|
5306
|
-
"events": ["pull_request", "workflow_dispatch"],
|
|
5307
|
-
"secrets": [],
|
|
5308
|
-
"outputs": [],
|
|
5309
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5310
|
-
"interfaces": [
|
|
5311
|
-
{
|
|
5312
|
-
"trigger": "workflow_dispatch",
|
|
5313
|
-
"name": "runtime-ref",
|
|
5314
|
-
"definition": {
|
|
5315
|
-
"description": "Transient runtime selected by the public entry.",
|
|
5316
|
-
"type": "string",
|
|
5317
|
-
"default": ""
|
|
5318
|
-
},
|
|
5319
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5320
|
-
}
|
|
5321
|
-
],
|
|
5322
|
-
"calls": [
|
|
5323
|
-
{
|
|
5324
|
-
"id": "dogfood",
|
|
5325
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-build-stage-capsule-canary.yml@v4",
|
|
5326
|
-
"inputs": [
|
|
5327
|
-
"build-artifact-path",
|
|
5328
|
-
"consumer",
|
|
5329
|
-
"go-version",
|
|
5330
|
-
"install-artifact-path",
|
|
5331
|
-
"node-version",
|
|
5332
|
-
"runtime-ref",
|
|
5333
|
-
"verify-artifact-path"
|
|
5334
|
-
],
|
|
5335
|
-
"destination": "internal.workflow-composition"
|
|
5336
|
-
}
|
|
5337
|
-
]
|
|
5338
|
-
},
|
|
5339
|
-
{
|
|
5340
|
-
"path": ".github/workflows/self-build-stable-candidate-qualification.yml",
|
|
5341
|
-
"role": "self",
|
|
5342
|
-
"events": ["workflow_dispatch", "workflow_run"],
|
|
5343
|
-
"secrets": [],
|
|
5344
|
-
"outputs": [],
|
|
5345
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5346
|
-
"interfaces": [
|
|
5347
|
-
{
|
|
5348
|
-
"trigger": "workflow_dispatch",
|
|
5349
|
-
"name": "run-id",
|
|
5350
|
-
"definition": {
|
|
5351
|
-
"description": "Successful public zero-input build run to qualify",
|
|
5352
|
-
"required": true,
|
|
5353
|
-
"type": "string"
|
|
5354
|
-
},
|
|
5355
|
-
"destination": "attempt.material-index"
|
|
5356
|
-
},
|
|
5357
|
-
{
|
|
5358
|
-
"trigger": "workflow_dispatch",
|
|
5359
|
-
"name": "runtime-ref",
|
|
5360
|
-
"definition": {
|
|
5361
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5362
|
-
"type": "string",
|
|
5363
|
-
"required": false,
|
|
5364
|
-
"default": ""
|
|
5365
|
-
},
|
|
5366
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5367
|
-
},
|
|
5368
|
-
{
|
|
5369
|
-
"trigger": "workflow_dispatch",
|
|
5370
|
-
"name": "contract-lock",
|
|
5371
|
-
"definition": {
|
|
5372
|
-
"description": "Optional consumer runtime lock path.",
|
|
5373
|
-
"type": "string",
|
|
5374
|
-
"required": false,
|
|
5375
|
-
"default": ""
|
|
5376
|
-
},
|
|
5377
|
-
"destination": "internal.plan-derived-input"
|
|
5378
|
-
}
|
|
5379
|
-
],
|
|
5380
|
-
"calls": []
|
|
5381
|
-
},
|
|
5382
|
-
{
|
|
5383
|
-
"path": ".github/workflows/self-build-stable-dogfood.yml",
|
|
5384
|
-
"role": "self",
|
|
5385
|
-
"events": ["schedule", "workflow_dispatch", "workflow_run"],
|
|
5386
|
-
"secrets": [],
|
|
5387
|
-
"outputs": [],
|
|
5388
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5389
|
-
"interfaces": [],
|
|
5390
|
-
"calls": [
|
|
5391
|
-
{
|
|
5392
|
-
"id": "stable-consumer",
|
|
5393
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/build.yml@v4",
|
|
5394
|
-
"inputs": [],
|
|
5395
|
-
"destination": "internal.workflow-composition"
|
|
5396
|
-
}
|
|
5397
|
-
]
|
|
5398
|
-
},
|
|
5399
|
-
{
|
|
5400
|
-
"path": ".github/workflows/self-build-verify.yml",
|
|
5401
|
-
"role": "self",
|
|
5402
|
-
"events": ["merge_group", "pull_request", "push", "workflow_dispatch"],
|
|
5403
|
-
"secrets": [],
|
|
5404
|
-
"outputs": [],
|
|
5405
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5406
|
-
"interfaces": [
|
|
5407
|
-
{
|
|
5408
|
-
"trigger": "workflow_dispatch",
|
|
5409
|
-
"name": "runtime-ref",
|
|
5410
|
-
"definition": {
|
|
5411
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5412
|
-
"type": "string",
|
|
5413
|
-
"required": false,
|
|
5414
|
-
"default": ""
|
|
5415
|
-
},
|
|
5416
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5417
|
-
},
|
|
5418
|
-
{
|
|
5419
|
-
"trigger": "workflow_dispatch",
|
|
5420
|
-
"name": "contract-lock",
|
|
5421
|
-
"definition": {
|
|
5422
|
-
"description": "Optional consumer runtime lock path.",
|
|
5423
|
-
"type": "string",
|
|
5424
|
-
"required": false,
|
|
5425
|
-
"default": ""
|
|
5426
|
-
},
|
|
5427
|
-
"destination": "internal.plan-derived-input"
|
|
5428
|
-
}
|
|
5429
|
-
],
|
|
5430
|
-
"calls": []
|
|
5431
|
-
},
|
|
5432
|
-
{
|
|
5433
|
-
"path": ".github/workflows/self-ops-bootstrap-dogfood.yml",
|
|
5434
|
-
"role": "self",
|
|
5435
|
-
"events": ["pull_request", "workflow_dispatch"],
|
|
5436
|
-
"secrets": [],
|
|
5437
|
-
"outputs": [],
|
|
5438
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5439
|
-
"interfaces": [
|
|
5440
|
-
{
|
|
5441
|
-
"trigger": "workflow_dispatch",
|
|
5442
|
-
"name": "request-json",
|
|
5443
|
-
"definition": {
|
|
5444
|
-
"description": "Optional typed request passed through the public Bootstrap API.",
|
|
5445
|
-
"required": false,
|
|
5446
|
-
"default": "",
|
|
5447
|
-
"type": "string"
|
|
5448
|
-
},
|
|
5449
|
-
"destination": "internal.plan-derived-input"
|
|
5450
|
-
},
|
|
5451
|
-
{
|
|
5452
|
-
"trigger": "workflow_dispatch",
|
|
5453
|
-
"name": "candidate-sha",
|
|
5454
|
-
"definition": {
|
|
5455
|
-
"description": "Exact candidate SHA",
|
|
5456
|
-
"required": true,
|
|
5457
|
-
"type": "string"
|
|
5458
|
-
},
|
|
5459
|
-
"destination": "attempt.internal-authority"
|
|
5460
|
-
},
|
|
5461
|
-
{
|
|
5462
|
-
"trigger": "workflow_dispatch",
|
|
5463
|
-
"name": "pull-request",
|
|
5464
|
-
"definition": {
|
|
5465
|
-
"description": "Same-repository candidate-to-dev review PR",
|
|
5466
|
-
"required": true,
|
|
5467
|
-
"type": "number"
|
|
5468
|
-
},
|
|
5469
|
-
"destination": "internal.plan-derived-input"
|
|
5470
|
-
},
|
|
5471
|
-
{
|
|
5472
|
-
"trigger": "workflow_dispatch",
|
|
5473
|
-
"name": "consumer-sha",
|
|
5474
|
-
"definition": {
|
|
5475
|
-
"description": "Exact unchanged Buildchain consumer SHA",
|
|
5476
|
-
"required": true,
|
|
5477
|
-
"type": "string"
|
|
5478
|
-
},
|
|
5479
|
-
"destination": "internal.plan-derived-input"
|
|
5480
|
-
},
|
|
5481
|
-
{
|
|
5482
|
-
"trigger": "workflow_dispatch",
|
|
5483
|
-
"name": "runtime-ref",
|
|
5484
|
-
"definition": {
|
|
5485
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5486
|
-
"type": "string",
|
|
5487
|
-
"required": false,
|
|
5488
|
-
"default": ""
|
|
5489
|
-
},
|
|
5490
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5491
|
-
},
|
|
5492
|
-
{
|
|
5493
|
-
"trigger": "workflow_dispatch",
|
|
5494
|
-
"name": "contract-lock",
|
|
5495
|
-
"definition": {
|
|
5496
|
-
"description": "Optional consumer runtime lock path.",
|
|
5497
|
-
"type": "string",
|
|
5498
|
-
"required": false,
|
|
5499
|
-
"default": ""
|
|
5500
|
-
},
|
|
5501
|
-
"destination": "internal.plan-derived-input"
|
|
5502
|
-
},
|
|
5503
|
-
{
|
|
5504
|
-
"trigger": "workflow_dispatch",
|
|
5505
|
-
"name": "recovery-runtime-ref",
|
|
5506
|
-
"definition": {
|
|
5507
|
-
"description": "Transient repaired runtime used through the same public entry.",
|
|
5508
|
-
"required": false,
|
|
5509
|
-
"type": "string",
|
|
5510
|
-
"default": ""
|
|
5511
|
-
},
|
|
5512
|
-
"destination": "attempt.material-index"
|
|
5513
|
-
}
|
|
5514
|
-
],
|
|
5515
|
-
"calls": [
|
|
5516
|
-
{
|
|
5517
|
-
"id": "primary-conformance",
|
|
5518
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5519
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5520
|
-
"destination": "internal.workflow-composition"
|
|
5521
|
-
},
|
|
5522
|
-
{
|
|
5523
|
-
"id": "recovery-conformance",
|
|
5524
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5525
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5526
|
-
"destination": "internal.workflow-composition"
|
|
5527
|
-
},
|
|
5528
|
-
{
|
|
5529
|
-
"id": "primary-alpha",
|
|
5530
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5531
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5532
|
-
"destination": "internal.workflow-composition"
|
|
5533
|
-
},
|
|
5534
|
-
{
|
|
5535
|
-
"id": "recovery-alpha",
|
|
5536
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5537
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5538
|
-
"destination": "internal.workflow-composition"
|
|
5539
|
-
},
|
|
5540
|
-
{
|
|
5541
|
-
"id": "primary-stable",
|
|
5542
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5543
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5544
|
-
"destination": "internal.workflow-composition"
|
|
5545
|
-
},
|
|
5546
|
-
{
|
|
5547
|
-
"id": "recovery-stable",
|
|
5548
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-bootstrap.yml@v4",
|
|
5549
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
5550
|
-
"destination": "internal.workflow-composition"
|
|
5551
|
-
}
|
|
5552
|
-
]
|
|
5553
|
-
},
|
|
5554
|
-
{
|
|
5555
|
-
"path": ".github/workflows/self-ops-dev-delivery.yml",
|
|
5556
|
-
"role": "self",
|
|
5557
|
-
"events": ["repository_dispatch", "workflow_dispatch"],
|
|
5558
|
-
"secrets": [],
|
|
5559
|
-
"outputs": [],
|
|
5560
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5561
|
-
"interfaces": [
|
|
5562
|
-
{
|
|
5563
|
-
"trigger": "workflow_dispatch",
|
|
5564
|
-
"name": "target-branch",
|
|
5565
|
-
"definition": {
|
|
5566
|
-
"description": "Exact protected development branch",
|
|
5567
|
-
"type": "string",
|
|
5568
|
-
"required": false,
|
|
5569
|
-
"default": "dev/v4/v4.1"
|
|
5570
|
-
},
|
|
5571
|
-
"destination": "internal.plan-derived-input"
|
|
5572
|
-
},
|
|
5573
|
-
{
|
|
5574
|
-
"trigger": "workflow_dispatch",
|
|
5575
|
-
"name": "expected-pr-number",
|
|
5576
|
-
"definition": {
|
|
5577
|
-
"description": "Exact Buildchain PR number",
|
|
5578
|
-
"type": "number",
|
|
5579
|
-
"required": true
|
|
5580
|
-
},
|
|
5581
|
-
"destination": "internal.plan-derived-input"
|
|
5582
|
-
},
|
|
5583
|
-
{
|
|
5584
|
-
"trigger": "workflow_dispatch",
|
|
5585
|
-
"name": "expected-head-sha",
|
|
5586
|
-
"definition": {
|
|
5587
|
-
"description": "Exact 40-character PR head",
|
|
5588
|
-
"type": "string",
|
|
5589
|
-
"required": true
|
|
5590
|
-
},
|
|
5591
|
-
"destination": "internal.plan-derived-input"
|
|
5592
|
-
},
|
|
5593
|
-
{
|
|
5594
|
-
"trigger": "workflow_dispatch",
|
|
5595
|
-
"name": "native-roots-json",
|
|
5596
|
-
"definition": {
|
|
5597
|
-
"description": "Machine-supplied canonical Work sourceRoot",
|
|
5598
|
-
"type": "string",
|
|
5599
|
-
"required": false,
|
|
5600
|
-
"default": ""
|
|
5601
|
-
},
|
|
5602
|
-
"destination": "attempt.internal-authority"
|
|
5603
|
-
},
|
|
5604
|
-
{
|
|
5605
|
-
"trigger": "workflow_dispatch",
|
|
5606
|
-
"name": "source-workflow-run-id",
|
|
5607
|
-
"definition": {
|
|
5608
|
-
"description": "Exact successful source workflow run",
|
|
5609
|
-
"type": "number",
|
|
5610
|
-
"required": false,
|
|
5611
|
-
"default": 0
|
|
5612
|
-
},
|
|
5613
|
-
"destination": "attempt.material-index"
|
|
5614
|
-
},
|
|
5615
|
-
{
|
|
5616
|
-
"trigger": "workflow_dispatch",
|
|
5617
|
-
"name": "source-identity-root",
|
|
5618
|
-
"definition": {
|
|
5619
|
-
"description": "Immutable semantic source identity root",
|
|
5620
|
-
"type": "string",
|
|
5621
|
-
"required": true
|
|
5622
|
-
},
|
|
5623
|
-
"destination": "attempt.internal-authority"
|
|
5624
|
-
},
|
|
5625
|
-
{
|
|
5626
|
-
"trigger": "workflow_dispatch",
|
|
5627
|
-
"name": "source-patch-root",
|
|
5628
|
-
"definition": {
|
|
5629
|
-
"description": "Immutable source patch or tree-intent root",
|
|
5630
|
-
"type": "string",
|
|
5631
|
-
"required": true
|
|
5632
|
-
},
|
|
5633
|
-
"destination": "attempt.internal-authority"
|
|
5634
|
-
},
|
|
5635
|
-
{
|
|
5636
|
-
"trigger": "workflow_dispatch",
|
|
5637
|
-
"name": "plan-root",
|
|
5638
|
-
"definition": {
|
|
5639
|
-
"description": "Exact qualification plan root",
|
|
5640
|
-
"type": "string",
|
|
5641
|
-
"required": true
|
|
5642
|
-
},
|
|
5643
|
-
"destination": "attempt.internal-authority"
|
|
5644
|
-
},
|
|
5645
|
-
{
|
|
5646
|
-
"trigger": "workflow_dispatch",
|
|
5647
|
-
"name": "closure-root",
|
|
5648
|
-
"definition": {
|
|
5649
|
-
"description": "Exact affected-closure root",
|
|
5650
|
-
"type": "string",
|
|
5651
|
-
"required": true
|
|
5652
|
-
},
|
|
5653
|
-
"destination": "attempt.internal-authority"
|
|
5654
|
-
},
|
|
5655
|
-
{
|
|
5656
|
-
"trigger": "workflow_dispatch",
|
|
5657
|
-
"name": "dependency-root",
|
|
5658
|
-
"definition": {
|
|
5659
|
-
"description": "Exact dependency-graph root",
|
|
5660
|
-
"type": "string",
|
|
5661
|
-
"required": true
|
|
5662
|
-
},
|
|
5663
|
-
"destination": "attempt.internal-authority"
|
|
5664
|
-
},
|
|
5665
|
-
{
|
|
5666
|
-
"trigger": "workflow_dispatch",
|
|
5667
|
-
"name": "toolchain-root",
|
|
5668
|
-
"definition": {
|
|
5669
|
-
"description": "Exact qualification toolchain root",
|
|
5670
|
-
"type": "string",
|
|
5671
|
-
"required": true
|
|
5672
|
-
},
|
|
5673
|
-
"destination": "attempt.internal-authority"
|
|
5674
|
-
},
|
|
5675
|
-
{
|
|
5676
|
-
"trigger": "workflow_dispatch",
|
|
5677
|
-
"name": "environment-root",
|
|
5678
|
-
"definition": {
|
|
5679
|
-
"description": "Exact pre-spawn native environment root",
|
|
5680
|
-
"type": "string",
|
|
5681
|
-
"required": false,
|
|
5682
|
-
"default": ""
|
|
5683
|
-
},
|
|
5684
|
-
"destination": "attempt.internal-authority"
|
|
5685
|
-
},
|
|
5686
|
-
{
|
|
5687
|
-
"trigger": "workflow_dispatch",
|
|
5688
|
-
"name": "affected-paths-json",
|
|
5689
|
-
"definition": {
|
|
5690
|
-
"description": "Optional covered paths; an empty array reconstructs the exact source run paths",
|
|
5691
|
-
"type": "string",
|
|
5692
|
-
"required": false,
|
|
5693
|
-
"default": "[]"
|
|
5694
|
-
},
|
|
5695
|
-
"destination": "internal.plan-derived-input"
|
|
5696
|
-
},
|
|
5697
|
-
{
|
|
5698
|
-
"trigger": "workflow_dispatch",
|
|
5699
|
-
"name": "shard-evidence-roots-json",
|
|
5700
|
-
"definition": {
|
|
5701
|
-
"description": "Exact rooted native shard evidence JSON",
|
|
5702
|
-
"type": "string",
|
|
5703
|
-
"required": false,
|
|
5704
|
-
"default": "[]"
|
|
5705
|
-
},
|
|
5706
|
-
"destination": "attempt.internal-authority"
|
|
5707
|
-
},
|
|
5708
|
-
{
|
|
5709
|
-
"trigger": "workflow_dispatch",
|
|
5710
|
-
"name": "release-blocker-priority-json",
|
|
5711
|
-
"definition": {
|
|
5712
|
-
"description": "Optional exact rooted release-blocker priority claim",
|
|
5713
|
-
"type": "string",
|
|
5714
|
-
"required": false,
|
|
5715
|
-
"default": ""
|
|
5716
|
-
},
|
|
5717
|
-
"destination": "internal.plan-derived-input"
|
|
5718
|
-
},
|
|
5719
|
-
{
|
|
5720
|
-
"trigger": "workflow_dispatch",
|
|
5721
|
-
"name": "native-proof-json",
|
|
5722
|
-
"definition": {
|
|
5723
|
-
"description": "Optional reusable semantic native proof",
|
|
5724
|
-
"type": "string",
|
|
5725
|
-
"required": false,
|
|
5726
|
-
"default": ""
|
|
5727
|
-
},
|
|
5728
|
-
"destination": "attempt.internal-authority"
|
|
5729
|
-
},
|
|
5730
|
-
{
|
|
5731
|
-
"trigger": "workflow_dispatch",
|
|
5732
|
-
"name": "native-command",
|
|
5733
|
-
"definition": {
|
|
5734
|
-
"description": "Slow native qualification command",
|
|
5735
|
-
"type": "string",
|
|
5736
|
-
"required": false,
|
|
5737
|
-
"default": ""
|
|
5738
|
-
},
|
|
5739
|
-
"destination": "internal.plan-derived-input"
|
|
5740
|
-
},
|
|
5741
|
-
{
|
|
5742
|
-
"trigger": "workflow_dispatch",
|
|
5743
|
-
"name": "native-command-root",
|
|
5744
|
-
"definition": {
|
|
5745
|
-
"description": "Optional exact native command contract root",
|
|
5746
|
-
"type": "string",
|
|
5747
|
-
"required": false,
|
|
5748
|
-
"default": ""
|
|
5749
|
-
},
|
|
5750
|
-
"destination": "attempt.internal-authority"
|
|
5751
|
-
},
|
|
5752
|
-
{
|
|
5753
|
-
"trigger": "workflow_dispatch",
|
|
5754
|
-
"name": "native-heartbeat-seconds",
|
|
5755
|
-
"definition": {
|
|
5756
|
-
"description": "Native qualification heartbeat cadence",
|
|
5757
|
-
"type": "number",
|
|
5758
|
-
"required": false,
|
|
5759
|
-
"default": 30
|
|
5760
|
-
},
|
|
5761
|
-
"destination": "internal.plan-derived-input"
|
|
5762
|
-
},
|
|
5763
|
-
{
|
|
5764
|
-
"trigger": "workflow_dispatch",
|
|
5765
|
-
"name": "delivery-class",
|
|
5766
|
-
"definition": {
|
|
5767
|
-
"description": "Bounded delivery class",
|
|
5768
|
-
"type": "string",
|
|
5769
|
-
"required": false,
|
|
5770
|
-
"default": "native-proof-required"
|
|
5771
|
-
},
|
|
5772
|
-
"destination": "internal.plan-derived-input"
|
|
5773
|
-
},
|
|
5774
|
-
{
|
|
5775
|
-
"trigger": "workflow_dispatch",
|
|
5776
|
-
"name": "delivery-priority",
|
|
5777
|
-
"definition": {
|
|
5778
|
-
"description": "Reviewed delivery priority",
|
|
5779
|
-
"type": "string",
|
|
5780
|
-
"required": false,
|
|
5781
|
-
"default": "ordinary"
|
|
5782
|
-
},
|
|
5783
|
-
"destination": "internal.plan-derived-input"
|
|
5784
|
-
},
|
|
5785
|
-
{
|
|
5786
|
-
"trigger": "workflow_dispatch",
|
|
5787
|
-
"name": "runtime-ref",
|
|
5788
|
-
"definition": {
|
|
5789
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5790
|
-
"type": "string",
|
|
5791
|
-
"required": false,
|
|
5792
|
-
"default": ""
|
|
5793
|
-
},
|
|
5794
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5795
|
-
}
|
|
5796
|
-
],
|
|
5797
|
-
"calls": [
|
|
5798
|
-
{
|
|
5799
|
-
"id": "deliver",
|
|
5800
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-dev-auto-merge.yml@v4",
|
|
5801
|
-
"inputs": [
|
|
5802
|
-
"active-lease-context",
|
|
5803
|
-
"affected-paths-json",
|
|
5804
|
-
"allowed-head-prefixes",
|
|
5805
|
-
"block-labels",
|
|
5806
|
-
"closure-root",
|
|
5807
|
-
"delivery-class",
|
|
5808
|
-
"delivery-priority",
|
|
5809
|
-
"delivery-warrant-mode",
|
|
5810
|
-
"dependency-root",
|
|
5811
|
-
"dry-run",
|
|
5812
|
-
"environment-root",
|
|
5813
|
-
"expected-head-sha",
|
|
5814
|
-
"expected-pr-number",
|
|
5815
|
-
"handoff-workflow-id",
|
|
5816
|
-
"landing-mode",
|
|
5817
|
-
"native-command",
|
|
5818
|
-
"native-command-root",
|
|
5819
|
-
"native-heartbeat-seconds",
|
|
5820
|
-
"native-proof-json",
|
|
5821
|
-
"plan-root",
|
|
5822
|
-
"queue-admission-context",
|
|
5823
|
-
"ready-label",
|
|
5824
|
-
"release-blocker-priority-json",
|
|
5825
|
-
"required-status-checks",
|
|
5826
|
-
"runtime-ref",
|
|
5827
|
-
"shard-evidence-roots-json",
|
|
5828
|
-
"source-identity-root",
|
|
5829
|
-
"source-patch-root",
|
|
5830
|
-
"source-root",
|
|
5831
|
-
"source-workflow-run-id",
|
|
5832
|
-
"target-branch",
|
|
5833
|
-
"toolchain-root"
|
|
5834
|
-
],
|
|
5835
|
-
"destination": "internal.workflow-composition"
|
|
5836
|
-
}
|
|
5837
|
-
]
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
"path": ".github/workflows/self-ops-governance-audit.yml",
|
|
5841
|
-
"role": "self",
|
|
5842
|
-
"events": [
|
|
5843
|
-
"merge_group",
|
|
5844
|
-
"pull_request",
|
|
5845
|
-
"schedule",
|
|
5846
|
-
"workflow_dispatch"
|
|
5847
|
-
],
|
|
5848
|
-
"secrets": [],
|
|
5849
|
-
"outputs": [],
|
|
5850
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5851
|
-
"interfaces": [
|
|
5852
|
-
{
|
|
5853
|
-
"trigger": "workflow_dispatch",
|
|
5854
|
-
"name": "runtime-ref",
|
|
5855
|
-
"definition": {
|
|
5856
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5857
|
-
"type": "string",
|
|
5858
|
-
"required": false,
|
|
5859
|
-
"default": ""
|
|
5860
|
-
},
|
|
5861
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5862
|
-
},
|
|
5863
|
-
{
|
|
5864
|
-
"trigger": "workflow_dispatch",
|
|
5865
|
-
"name": "contract-lock",
|
|
5866
|
-
"definition": {
|
|
5867
|
-
"description": "Optional consumer runtime lock path.",
|
|
5868
|
-
"type": "string",
|
|
5869
|
-
"required": false,
|
|
5870
|
-
"default": ""
|
|
5871
|
-
},
|
|
5872
|
-
"destination": "internal.plan-derived-input"
|
|
5873
|
-
}
|
|
5874
|
-
],
|
|
5875
|
-
"calls": []
|
|
5876
|
-
},
|
|
5877
|
-
{
|
|
5878
|
-
"path": ".github/workflows/self-ops-housekeeping-daily.yml",
|
|
5879
|
-
"role": "self",
|
|
5880
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
5881
|
-
"secrets": [],
|
|
5882
|
-
"outputs": [],
|
|
5883
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5884
|
-
"interfaces": [
|
|
5885
|
-
{
|
|
5886
|
-
"trigger": "workflow_dispatch",
|
|
5887
|
-
"name": "mode",
|
|
5888
|
-
"definition": {
|
|
5889
|
-
"description": "Report by default; apply also requires apply-enabled.",
|
|
5890
|
-
"type": "choice",
|
|
5891
|
-
"options": ["report", "apply"],
|
|
5892
|
-
"default": "report"
|
|
5893
|
-
},
|
|
5894
|
-
"destination": "internal.plan-derived-input"
|
|
5895
|
-
},
|
|
5896
|
-
{
|
|
5897
|
-
"trigger": "workflow_dispatch",
|
|
5898
|
-
"name": "apply-enabled",
|
|
5899
|
-
"definition": {
|
|
5900
|
-
"description": "Explicit positive mutation gate.",
|
|
5901
|
-
"type": "boolean",
|
|
5902
|
-
"default": false
|
|
5903
|
-
},
|
|
5904
|
-
"destination": "internal.plan-derived-input"
|
|
5905
|
-
},
|
|
5906
|
-
{
|
|
5907
|
-
"trigger": "workflow_dispatch",
|
|
5908
|
-
"name": "runtime-ref",
|
|
5909
|
-
"definition": {
|
|
5910
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5911
|
-
"type": "string",
|
|
5912
|
-
"required": false,
|
|
5913
|
-
"default": ""
|
|
5914
|
-
},
|
|
5915
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5916
|
-
},
|
|
5917
|
-
{
|
|
5918
|
-
"trigger": "workflow_dispatch",
|
|
5919
|
-
"name": "contract-lock",
|
|
5920
|
-
"definition": {
|
|
5921
|
-
"description": "Optional consumer runtime lock path.",
|
|
5922
|
-
"type": "string",
|
|
5923
|
-
"required": false,
|
|
5924
|
-
"default": ""
|
|
5925
|
-
},
|
|
5926
|
-
"destination": "internal.plan-derived-input"
|
|
5927
|
-
}
|
|
5928
|
-
],
|
|
5929
|
-
"calls": [
|
|
5930
|
-
{
|
|
5931
|
-
"id": "report",
|
|
5932
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
5933
|
-
"inputs": ["max-actions", "mode", "runtime-selection", "stale-days"],
|
|
5934
|
-
"destination": "internal.workflow-composition"
|
|
5935
|
-
},
|
|
5936
|
-
{
|
|
5937
|
-
"id": "apply",
|
|
5938
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
5939
|
-
"inputs": [
|
|
5940
|
-
"apply-enabled",
|
|
5941
|
-
"max-actions",
|
|
5942
|
-
"mode",
|
|
5943
|
-
"runtime-selection",
|
|
5944
|
-
"stale-days",
|
|
5945
|
-
"stale-pull-request-label"
|
|
5946
|
-
],
|
|
5947
|
-
"destination": "internal.workflow-composition"
|
|
5948
|
-
}
|
|
5949
|
-
]
|
|
5950
|
-
},
|
|
5951
|
-
{
|
|
5952
|
-
"path": ".github/workflows/self-ops-housekeeping-monthly.yml",
|
|
5953
|
-
"role": "self",
|
|
5954
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
5955
|
-
"secrets": [],
|
|
5956
|
-
"outputs": [],
|
|
5957
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
5958
|
-
"interfaces": [
|
|
5959
|
-
{
|
|
5960
|
-
"trigger": "workflow_dispatch",
|
|
5961
|
-
"name": "mode",
|
|
5962
|
-
"definition": {
|
|
5963
|
-
"description": "Report by default; apply also requires apply-enabled.",
|
|
5964
|
-
"type": "choice",
|
|
5965
|
-
"options": ["report", "apply"],
|
|
5966
|
-
"default": "report"
|
|
5967
|
-
},
|
|
5968
|
-
"destination": "internal.plan-derived-input"
|
|
5969
|
-
},
|
|
5970
|
-
{
|
|
5971
|
-
"trigger": "workflow_dispatch",
|
|
5972
|
-
"name": "apply-enabled",
|
|
5973
|
-
"definition": {
|
|
5974
|
-
"description": "Explicit positive mutation gate.",
|
|
5975
|
-
"type": "boolean",
|
|
5976
|
-
"default": false
|
|
5977
|
-
},
|
|
5978
|
-
"destination": "internal.plan-derived-input"
|
|
5979
|
-
},
|
|
5980
|
-
{
|
|
5981
|
-
"trigger": "workflow_dispatch",
|
|
5982
|
-
"name": "runtime-ref",
|
|
5983
|
-
"definition": {
|
|
5984
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
5985
|
-
"type": "string",
|
|
5986
|
-
"required": false,
|
|
5987
|
-
"default": ""
|
|
5988
|
-
},
|
|
5989
|
-
"destination": "recovery-entry.runtime-ref"
|
|
5990
|
-
},
|
|
5991
|
-
{
|
|
5992
|
-
"trigger": "workflow_dispatch",
|
|
5993
|
-
"name": "contract-lock",
|
|
5994
|
-
"definition": {
|
|
5995
|
-
"description": "Optional consumer runtime lock path.",
|
|
5996
|
-
"type": "string",
|
|
5997
|
-
"required": false,
|
|
5998
|
-
"default": ""
|
|
5999
|
-
},
|
|
6000
|
-
"destination": "internal.plan-derived-input"
|
|
6001
|
-
}
|
|
6002
|
-
],
|
|
6003
|
-
"calls": [
|
|
6004
|
-
{
|
|
6005
|
-
"id": "report",
|
|
6006
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
6007
|
-
"inputs": ["max-actions", "mode", "runtime-selection", "stale-days"],
|
|
6008
|
-
"destination": "internal.workflow-composition"
|
|
6009
|
-
},
|
|
6010
|
-
{
|
|
6011
|
-
"id": "apply",
|
|
6012
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
6013
|
-
"inputs": [
|
|
6014
|
-
"apply-enabled",
|
|
6015
|
-
"max-actions",
|
|
6016
|
-
"mode",
|
|
6017
|
-
"runtime-selection",
|
|
6018
|
-
"stale-days",
|
|
6019
|
-
"stale-pull-request-label"
|
|
6020
|
-
],
|
|
6021
|
-
"destination": "internal.workflow-composition"
|
|
6022
|
-
}
|
|
6023
|
-
]
|
|
6024
|
-
},
|
|
6025
|
-
{
|
|
6026
|
-
"path": ".github/workflows/self-ops-housekeeping-weekly.yml",
|
|
6027
|
-
"role": "self",
|
|
6028
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
6029
|
-
"secrets": [],
|
|
6030
|
-
"outputs": [],
|
|
6031
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6032
|
-
"interfaces": [
|
|
6033
|
-
{
|
|
6034
|
-
"trigger": "workflow_dispatch",
|
|
6035
|
-
"name": "mode",
|
|
6036
|
-
"definition": {
|
|
6037
|
-
"description": "Report by default; apply also requires apply-enabled.",
|
|
6038
|
-
"type": "choice",
|
|
6039
|
-
"options": ["report", "apply"],
|
|
6040
|
-
"default": "report"
|
|
6041
|
-
},
|
|
6042
|
-
"destination": "internal.plan-derived-input"
|
|
6043
|
-
},
|
|
6044
|
-
{
|
|
6045
|
-
"trigger": "workflow_dispatch",
|
|
6046
|
-
"name": "apply-enabled",
|
|
6047
|
-
"definition": {
|
|
6048
|
-
"description": "Explicit positive mutation gate.",
|
|
6049
|
-
"type": "boolean",
|
|
6050
|
-
"default": false
|
|
6051
|
-
},
|
|
6052
|
-
"destination": "internal.plan-derived-input"
|
|
6053
|
-
},
|
|
6054
|
-
{
|
|
6055
|
-
"trigger": "workflow_dispatch",
|
|
6056
|
-
"name": "runtime-ref",
|
|
6057
|
-
"definition": {
|
|
6058
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6059
|
-
"type": "string",
|
|
6060
|
-
"required": false,
|
|
6061
|
-
"default": ""
|
|
6062
|
-
},
|
|
6063
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6064
|
-
},
|
|
6065
|
-
{
|
|
6066
|
-
"trigger": "workflow_dispatch",
|
|
6067
|
-
"name": "contract-lock",
|
|
6068
|
-
"definition": {
|
|
6069
|
-
"description": "Optional consumer runtime lock path.",
|
|
6070
|
-
"type": "string",
|
|
6071
|
-
"required": false,
|
|
6072
|
-
"default": ""
|
|
6073
|
-
},
|
|
6074
|
-
"destination": "internal.plan-derived-input"
|
|
6075
|
-
}
|
|
6076
|
-
],
|
|
6077
|
-
"calls": [
|
|
6078
|
-
{
|
|
6079
|
-
"id": "report",
|
|
6080
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
6081
|
-
"inputs": ["max-actions", "mode", "runtime-selection", "stale-days"],
|
|
6082
|
-
"destination": "internal.workflow-composition"
|
|
6083
|
-
},
|
|
6084
|
-
{
|
|
6085
|
-
"id": "apply",
|
|
6086
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-housekeeping.yml@v4",
|
|
6087
|
-
"inputs": [
|
|
6088
|
-
"apply-enabled",
|
|
6089
|
-
"max-actions",
|
|
6090
|
-
"mode",
|
|
6091
|
-
"runtime-selection",
|
|
6092
|
-
"stale-days",
|
|
6093
|
-
"stale-pull-request-label"
|
|
6094
|
-
],
|
|
6095
|
-
"destination": "internal.workflow-composition"
|
|
6096
|
-
}
|
|
6097
|
-
]
|
|
6098
|
-
},
|
|
6099
|
-
{
|
|
6100
|
-
"path": ".github/workflows/self-ops-merge-queue.yml",
|
|
6101
|
-
"role": "self",
|
|
6102
|
-
"events": ["push", "workflow_dispatch"],
|
|
6103
|
-
"secrets": [],
|
|
6104
|
-
"outputs": [],
|
|
6105
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6106
|
-
"interfaces": [
|
|
6107
|
-
{
|
|
6108
|
-
"trigger": "workflow_dispatch",
|
|
6109
|
-
"name": "branch",
|
|
6110
|
-
"definition": {
|
|
6111
|
-
"description": "Protected Buildchain dev branch",
|
|
6112
|
-
"required": true,
|
|
6113
|
-
"type": "string"
|
|
6114
|
-
},
|
|
6115
|
-
"destination": "internal.plan-derived-input"
|
|
6116
|
-
},
|
|
6117
|
-
{
|
|
6118
|
-
"trigger": "workflow_dispatch",
|
|
6119
|
-
"name": "apply",
|
|
6120
|
-
"definition": {
|
|
6121
|
-
"description": "Apply the reconciled policy after emitting the plan",
|
|
6122
|
-
"required": false,
|
|
6123
|
-
"default": false,
|
|
6124
|
-
"type": "boolean"
|
|
6125
|
-
},
|
|
6126
|
-
"destination": "internal.plan-derived-input"
|
|
6127
|
-
},
|
|
6128
|
-
{
|
|
6129
|
-
"trigger": "workflow_dispatch",
|
|
6130
|
-
"name": "runtime-ref",
|
|
6131
|
-
"definition": {
|
|
6132
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6133
|
-
"type": "string",
|
|
6134
|
-
"required": false,
|
|
6135
|
-
"default": ""
|
|
6136
|
-
},
|
|
6137
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6138
|
-
},
|
|
6139
|
-
{
|
|
6140
|
-
"trigger": "workflow_dispatch",
|
|
6141
|
-
"name": "contract-lock",
|
|
6142
|
-
"definition": {
|
|
6143
|
-
"description": "Optional consumer runtime lock path.",
|
|
6144
|
-
"type": "string",
|
|
6145
|
-
"required": false,
|
|
6146
|
-
"default": ""
|
|
6147
|
-
},
|
|
6148
|
-
"destination": "internal.plan-derived-input"
|
|
6149
|
-
}
|
|
6150
|
-
],
|
|
6151
|
-
"calls": []
|
|
6152
|
-
},
|
|
6153
|
-
{
|
|
6154
|
-
"path": ".github/workflows/self-ops-patrol-daily.yml",
|
|
6155
|
-
"role": "self",
|
|
6156
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
6157
|
-
"secrets": [],
|
|
6158
|
-
"outputs": [],
|
|
6159
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6160
|
-
"interfaces": [
|
|
6161
|
-
{
|
|
6162
|
-
"trigger": "workflow_dispatch",
|
|
6163
|
-
"name": "dry-run",
|
|
6164
|
-
"definition": {
|
|
6165
|
-
"description": "Plan only; do not mutate repository state",
|
|
6166
|
-
"required": false,
|
|
6167
|
-
"type": "boolean",
|
|
6168
|
-
"default": false
|
|
6169
|
-
},
|
|
6170
|
-
"destination": "attempt.material-index"
|
|
6171
|
-
},
|
|
6172
|
-
{
|
|
6173
|
-
"trigger": "workflow_dispatch",
|
|
6174
|
-
"name": "runtime-ref",
|
|
6175
|
-
"definition": {
|
|
6176
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6177
|
-
"type": "string",
|
|
6178
|
-
"required": false,
|
|
6179
|
-
"default": ""
|
|
6180
|
-
},
|
|
6181
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6182
|
-
}
|
|
6183
|
-
],
|
|
6184
|
-
"calls": [
|
|
6185
|
-
{
|
|
6186
|
-
"id": "patrol",
|
|
6187
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-patrol-daily.yml@v4",
|
|
6188
|
-
"inputs": [
|
|
6189
|
-
"dry-run",
|
|
6190
|
-
"landing-mode",
|
|
6191
|
-
"max-actions",
|
|
6192
|
-
"required-status-checks",
|
|
6193
|
-
"runtime-ref"
|
|
6194
|
-
],
|
|
6195
|
-
"destination": "internal.workflow-composition"
|
|
6196
|
-
}
|
|
6197
|
-
]
|
|
6198
|
-
},
|
|
6199
|
-
{
|
|
6200
|
-
"path": ".github/workflows/self-ops-patrol-monthly.yml",
|
|
6201
|
-
"role": "self",
|
|
6202
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
6203
|
-
"secrets": [],
|
|
6204
|
-
"outputs": [],
|
|
6205
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6206
|
-
"interfaces": [
|
|
6207
|
-
{
|
|
6208
|
-
"trigger": "workflow_dispatch",
|
|
6209
|
-
"name": "dry-run",
|
|
6210
|
-
"definition": {
|
|
6211
|
-
"description": "Plan only; do not mutate repository state",
|
|
6212
|
-
"required": false,
|
|
6213
|
-
"type": "boolean",
|
|
6214
|
-
"default": true
|
|
6215
|
-
},
|
|
6216
|
-
"destination": "attempt.material-index"
|
|
6217
|
-
},
|
|
6218
|
-
{
|
|
6219
|
-
"trigger": "workflow_dispatch",
|
|
6220
|
-
"name": "runtime-ref",
|
|
6221
|
-
"definition": {
|
|
6222
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6223
|
-
"type": "string",
|
|
6224
|
-
"required": false,
|
|
6225
|
-
"default": ""
|
|
6226
|
-
},
|
|
6227
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6228
|
-
}
|
|
6229
|
-
],
|
|
6230
|
-
"calls": [
|
|
6231
|
-
{
|
|
6232
|
-
"id": "patrol",
|
|
6233
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-patrol-monthly.yml@v4",
|
|
6234
|
-
"inputs": ["dry-run", "runtime-ref"],
|
|
6235
|
-
"destination": "internal.workflow-composition"
|
|
6236
|
-
}
|
|
6237
|
-
]
|
|
6238
|
-
},
|
|
6239
|
-
{
|
|
6240
|
-
"path": ".github/workflows/self-ops-patrol-weekly.yml",
|
|
6241
|
-
"role": "self",
|
|
6242
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
6243
|
-
"secrets": [],
|
|
6244
|
-
"outputs": [],
|
|
6245
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6246
|
-
"interfaces": [
|
|
6247
|
-
{
|
|
6248
|
-
"trigger": "workflow_dispatch",
|
|
6249
|
-
"name": "dry-run",
|
|
6250
|
-
"definition": {
|
|
6251
|
-
"description": "Plan only; do not mutate repository state",
|
|
6252
|
-
"required": false,
|
|
6253
|
-
"type": "boolean",
|
|
6254
|
-
"default": true
|
|
6255
|
-
},
|
|
6256
|
-
"destination": "attempt.material-index"
|
|
6257
|
-
},
|
|
6258
|
-
{
|
|
6259
|
-
"trigger": "workflow_dispatch",
|
|
6260
|
-
"name": "runtime-ref",
|
|
6261
|
-
"definition": {
|
|
6262
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6263
|
-
"type": "string",
|
|
6264
|
-
"required": false,
|
|
6265
|
-
"default": ""
|
|
6266
|
-
},
|
|
6267
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6268
|
-
}
|
|
6269
|
-
],
|
|
6270
|
-
"calls": [
|
|
6271
|
-
{
|
|
6272
|
-
"id": "patrol",
|
|
6273
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-patrol-weekly.yml@v4",
|
|
6274
|
-
"inputs": ["dry-run", "runtime-ref"],
|
|
6275
|
-
"destination": "internal.workflow-composition"
|
|
6276
|
-
}
|
|
6277
|
-
]
|
|
6278
|
-
},
|
|
6279
|
-
{
|
|
6280
|
-
"path": ".github/workflows/self-ops-promotion-recovery.yml",
|
|
6281
|
-
"role": "self",
|
|
6282
|
-
"events": ["workflow_dispatch"],
|
|
6283
|
-
"secrets": [],
|
|
6284
|
-
"outputs": [],
|
|
6285
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6286
|
-
"interfaces": [
|
|
6287
|
-
{
|
|
6288
|
-
"trigger": "workflow_dispatch",
|
|
6289
|
-
"name": "sha",
|
|
6290
|
-
"definition": {
|
|
6291
|
-
"description": "Exact protected v4 channel commit that owns the recovery",
|
|
6292
|
-
"required": true
|
|
6293
|
-
},
|
|
6294
|
-
"destination": "internal.plan-derived-input"
|
|
6295
|
-
},
|
|
6296
|
-
{
|
|
6297
|
-
"trigger": "workflow_dispatch",
|
|
6298
|
-
"name": "target-ref",
|
|
6299
|
-
"definition": {
|
|
6300
|
-
"description": "Exact protected v4 alpha or stable channel branch",
|
|
6301
|
-
"required": true,
|
|
6302
|
-
"default": "alpha/v4/v4.1"
|
|
6303
|
-
},
|
|
6304
|
-
"destination": "internal.plan-derived-input"
|
|
6305
|
-
},
|
|
6306
|
-
{
|
|
6307
|
-
"trigger": "workflow_dispatch",
|
|
6308
|
-
"name": "dry-run",
|
|
6309
|
-
"definition": {
|
|
6310
|
-
"description": "Only print planned publication changes",
|
|
6311
|
-
"required": true,
|
|
6312
|
-
"default": true,
|
|
6313
|
-
"type": "boolean"
|
|
6314
|
-
},
|
|
6315
|
-
"destination": "attempt.material-index"
|
|
6316
|
-
},
|
|
6317
|
-
{
|
|
6318
|
-
"trigger": "workflow_dispatch",
|
|
6319
|
-
"name": "resume-candidate-repository",
|
|
6320
|
-
"definition": {
|
|
6321
|
-
"description": "Repository that owns the sealed candidate run; empty rematerializes a fresh candidate"
|
|
6322
|
-
},
|
|
6323
|
-
"destination": "attempt.material-index"
|
|
6324
|
-
},
|
|
6325
|
-
{
|
|
6326
|
-
"trigger": "workflow_dispatch",
|
|
6327
|
-
"name": "resume-candidate-run-id",
|
|
6328
|
-
"definition": {
|
|
6329
|
-
"description": "Exact successful Build Surface Fixture run ID; empty rematerializes a fresh candidate"
|
|
6330
|
-
},
|
|
6331
|
-
"destination": "attempt.material-index"
|
|
6332
|
-
},
|
|
6333
|
-
{
|
|
6334
|
-
"trigger": "workflow_dispatch",
|
|
6335
|
-
"name": "resume-expected-source-tree",
|
|
6336
|
-
"definition": {
|
|
6337
|
-
"description": "Exact Git tree recorded for the sealed candidate"
|
|
6338
|
-
},
|
|
6339
|
-
"destination": "attempt.material-index"
|
|
6340
|
-
},
|
|
6341
|
-
{
|
|
6342
|
-
"trigger": "workflow_dispatch",
|
|
6343
|
-
"name": "resume-expected-candidate-root",
|
|
6344
|
-
"definition": { "description": "Optional exact candidate root" },
|
|
6345
|
-
"destination": "attempt.material-index"
|
|
6346
|
-
},
|
|
6347
|
-
{
|
|
6348
|
-
"trigger": "workflow_dispatch",
|
|
6349
|
-
"name": "resume-discussion-id",
|
|
6350
|
-
"definition": {
|
|
6351
|
-
"description": "Existing release Discussion ID whose retained materials will be recovered.",
|
|
6352
|
-
"type": "string",
|
|
6353
|
-
"default": ""
|
|
6354
|
-
},
|
|
6355
|
-
"destination": "attempt.material-index"
|
|
6356
|
-
},
|
|
6357
|
-
{
|
|
6358
|
-
"trigger": "workflow_dispatch",
|
|
6359
|
-
"name": "resume-transaction-id",
|
|
6360
|
-
"definition": {
|
|
6361
|
-
"description": "Exact durable publication transaction identity; required only when resuming a sealed candidate"
|
|
6362
|
-
},
|
|
6363
|
-
"destination": "attempt.material-index"
|
|
6364
|
-
},
|
|
6365
|
-
{
|
|
6366
|
-
"trigger": "workflow_dispatch",
|
|
6367
|
-
"name": "release-passport-v4-runtime-resume-evidence-json",
|
|
6368
|
-
"definition": {
|
|
6369
|
-
"description": "Optional precomputed runtime A+B Stage Capsule resume evidence JSON"
|
|
6370
|
-
},
|
|
6371
|
-
"destination": "attempt.material-index"
|
|
6372
|
-
},
|
|
6373
|
-
{
|
|
6374
|
-
"trigger": "workflow_dispatch",
|
|
6375
|
-
"name": "runtime-ref",
|
|
6376
|
-
"definition": {
|
|
6377
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6378
|
-
"type": "string",
|
|
6379
|
-
"required": false,
|
|
6380
|
-
"default": ""
|
|
6381
|
-
},
|
|
6382
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6383
|
-
}
|
|
6384
|
-
],
|
|
6385
|
-
"calls": [
|
|
6386
|
-
{
|
|
6387
|
-
"id": "resume",
|
|
6388
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-release-promote.yml@v4",
|
|
6389
|
-
"inputs": ["request-json", "runtime-ref"],
|
|
6390
|
-
"destination": "internal.workflow-composition"
|
|
6391
|
-
}
|
|
6392
|
-
]
|
|
6393
|
-
},
|
|
6394
|
-
{
|
|
6395
|
-
"path": ".github/workflows/self-ops-runner-smoke.yml",
|
|
6396
|
-
"role": "self",
|
|
6397
|
-
"events": ["workflow_dispatch"],
|
|
6398
|
-
"secrets": [],
|
|
6399
|
-
"outputs": [],
|
|
6400
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6401
|
-
"interfaces": [
|
|
6402
|
-
{
|
|
6403
|
-
"trigger": "workflow_dispatch",
|
|
6404
|
-
"name": "runtime-ref",
|
|
6405
|
-
"definition": {
|
|
6406
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6407
|
-
"type": "string",
|
|
6408
|
-
"required": false,
|
|
6409
|
-
"default": ""
|
|
6410
|
-
},
|
|
6411
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6412
|
-
},
|
|
6413
|
-
{
|
|
6414
|
-
"trigger": "workflow_dispatch",
|
|
6415
|
-
"name": "contract-lock",
|
|
6416
|
-
"definition": {
|
|
6417
|
-
"description": "Optional consumer runtime lock path.",
|
|
6418
|
-
"type": "string",
|
|
6419
|
-
"required": false,
|
|
6420
|
-
"default": ""
|
|
6421
|
-
},
|
|
6422
|
-
"destination": "internal.plan-derived-input"
|
|
6423
|
-
}
|
|
6424
|
-
],
|
|
6425
|
-
"calls": []
|
|
6426
|
-
},
|
|
6427
|
-
{
|
|
6428
|
-
"path": ".github/workflows/self-ops-stable-candidate-patrol.yml",
|
|
6429
|
-
"role": "self",
|
|
6430
|
-
"events": ["schedule", "workflow_dispatch"],
|
|
6431
|
-
"secrets": [],
|
|
6432
|
-
"outputs": [],
|
|
6433
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6434
|
-
"interfaces": [
|
|
6435
|
-
{
|
|
6436
|
-
"trigger": "workflow_dispatch",
|
|
6437
|
-
"name": "release-now",
|
|
6438
|
-
"definition": {
|
|
6439
|
-
"description": "Exact alpha selected by explicit human authority",
|
|
6440
|
-
"required": false,
|
|
6441
|
-
"default": ""
|
|
6442
|
-
},
|
|
6443
|
-
"destination": "internal.plan-derived-input"
|
|
6444
|
-
},
|
|
6445
|
-
{
|
|
6446
|
-
"trigger": "workflow_dispatch",
|
|
6447
|
-
"name": "dry-run",
|
|
6448
|
-
"definition": {
|
|
6449
|
-
"description": "Evaluate without durable ledger or promotion writes",
|
|
6450
|
-
"required": false,
|
|
6451
|
-
"type": "boolean",
|
|
6452
|
-
"default": false
|
|
6453
|
-
},
|
|
6454
|
-
"destination": "attempt.material-index"
|
|
6455
|
-
},
|
|
6456
|
-
{
|
|
6457
|
-
"trigger": "workflow_dispatch",
|
|
6458
|
-
"name": "runtime-ref",
|
|
6459
|
-
"definition": {
|
|
6460
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6461
|
-
"type": "string",
|
|
6462
|
-
"required": false,
|
|
6463
|
-
"default": ""
|
|
6464
|
-
},
|
|
6465
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6466
|
-
}
|
|
6467
|
-
],
|
|
6468
|
-
"calls": [
|
|
6469
|
-
{
|
|
6470
|
-
"id": "patrol",
|
|
6471
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-ops-stable-candidate-patrol.yml@v4",
|
|
6472
|
-
"inputs": ["auto-approve", "dry-run", "release-now", "runtime-ref"],
|
|
6473
|
-
"destination": "internal.workflow-composition"
|
|
6474
|
-
}
|
|
6475
|
-
]
|
|
6476
|
-
},
|
|
6477
|
-
{
|
|
6478
|
-
"path": ".github/workflows/self-release-binary-assets.yml",
|
|
6479
|
-
"role": "self",
|
|
6480
|
-
"events": ["workflow_dispatch"],
|
|
6481
|
-
"secrets": [],
|
|
6482
|
-
"outputs": [],
|
|
6483
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6484
|
-
"interfaces": [
|
|
6485
|
-
{
|
|
6486
|
-
"trigger": "workflow_dispatch",
|
|
6487
|
-
"name": "evidence-run-id",
|
|
6488
|
-
"definition": {
|
|
6489
|
-
"description": "Successful Binary Distribution run id.",
|
|
6490
|
-
"required": true
|
|
6491
|
-
},
|
|
6492
|
-
"destination": "attempt.material-index"
|
|
6493
|
-
},
|
|
6494
|
-
{
|
|
6495
|
-
"trigger": "workflow_dispatch",
|
|
6496
|
-
"name": "release-tag",
|
|
6497
|
-
"definition": {
|
|
6498
|
-
"description": "Existing v* release tag.",
|
|
6499
|
-
"required": true
|
|
6500
|
-
},
|
|
6501
|
-
"destination": "internal.plan-derived-input"
|
|
6502
|
-
},
|
|
6503
|
-
{
|
|
6504
|
-
"trigger": "workflow_dispatch",
|
|
6505
|
-
"name": "publication-used-nonces-json",
|
|
6506
|
-
"definition": {
|
|
6507
|
-
"description": "JSON array of already consumed admission nonces.",
|
|
6508
|
-
"required": true,
|
|
6509
|
-
"default": "[]"
|
|
6510
|
-
},
|
|
6511
|
-
"destination": "attempt.internal-authority"
|
|
6512
|
-
},
|
|
6513
|
-
{
|
|
6514
|
-
"trigger": "workflow_dispatch",
|
|
6515
|
-
"name": "runtime-ref",
|
|
6516
|
-
"definition": {
|
|
6517
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6518
|
-
"type": "string",
|
|
6519
|
-
"required": false,
|
|
6520
|
-
"default": ""
|
|
6521
|
-
},
|
|
6522
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6523
|
-
},
|
|
6524
|
-
{
|
|
6525
|
-
"trigger": "workflow_dispatch",
|
|
6526
|
-
"name": "contract-lock",
|
|
6527
|
-
"definition": {
|
|
6528
|
-
"description": "Optional consumer runtime lock path.",
|
|
6529
|
-
"type": "string",
|
|
6530
|
-
"required": false,
|
|
6531
|
-
"default": ""
|
|
6532
|
-
},
|
|
6533
|
-
"destination": "internal.plan-derived-input"
|
|
6534
|
-
}
|
|
6535
|
-
],
|
|
6536
|
-
"calls": [
|
|
6537
|
-
{
|
|
6538
|
-
"id": "publish",
|
|
6539
|
-
"uses": "./.github/workflows/.release-binary-assets.yml",
|
|
6540
|
-
"inputs": [
|
|
6541
|
-
"auto-admission",
|
|
6542
|
-
"evidence-run-id",
|
|
6543
|
-
"publication-used-nonces-json",
|
|
6544
|
-
"publication-version",
|
|
6545
|
-
"release-tag",
|
|
6546
|
-
"runtime-selection",
|
|
6547
|
-
"source-sha",
|
|
6548
|
-
"target-ref"
|
|
6549
|
-
],
|
|
6550
|
-
"destination": "internal.workflow-composition"
|
|
6551
|
-
}
|
|
6552
|
-
]
|
|
6553
|
-
},
|
|
6554
|
-
{
|
|
6555
|
-
"path": ".github/workflows/self-release-line-open.yml",
|
|
6556
|
-
"role": "self",
|
|
6557
|
-
"events": ["workflow_dispatch"],
|
|
6558
|
-
"secrets": [],
|
|
6559
|
-
"outputs": [],
|
|
6560
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6561
|
-
"interfaces": [
|
|
6562
|
-
{
|
|
6563
|
-
"trigger": "workflow_dispatch",
|
|
6564
|
-
"name": "major",
|
|
6565
|
-
"definition": {
|
|
6566
|
-
"description": "Semver major number, for example 2",
|
|
6567
|
-
"required": true,
|
|
6568
|
-
"type": "string"
|
|
6569
|
-
},
|
|
6570
|
-
"destination": "internal.plan-derived-input"
|
|
6571
|
-
},
|
|
6572
|
-
{
|
|
6573
|
-
"trigger": "workflow_dispatch",
|
|
6574
|
-
"name": "minor",
|
|
6575
|
-
"definition": {
|
|
6576
|
-
"description": "Semver minor number, for example 10",
|
|
6577
|
-
"required": true,
|
|
6578
|
-
"type": "string"
|
|
6579
|
-
},
|
|
6580
|
-
"destination": "internal.plan-derived-input"
|
|
6581
|
-
},
|
|
6582
|
-
{
|
|
6583
|
-
"trigger": "workflow_dispatch",
|
|
6584
|
-
"name": "source-ref",
|
|
6585
|
-
"definition": {
|
|
6586
|
-
"description": "Existing ref used as the baseline for alpha/release branches",
|
|
6587
|
-
"required": true,
|
|
6588
|
-
"type": "string"
|
|
6589
|
-
},
|
|
6590
|
-
"destination": "internal.plan-derived-input"
|
|
6591
|
-
},
|
|
6592
|
-
{
|
|
6593
|
-
"trigger": "workflow_dispatch",
|
|
6594
|
-
"name": "initial-version",
|
|
6595
|
-
"definition": {
|
|
6596
|
-
"description": "Initial dev version. Defaults to <major>.<minor>.0-alpha.0",
|
|
6597
|
-
"required": false,
|
|
6598
|
-
"default": "",
|
|
6599
|
-
"type": "string"
|
|
6600
|
-
},
|
|
6601
|
-
"destination": "internal.plan-derived-input"
|
|
6602
|
-
},
|
|
6603
|
-
{
|
|
6604
|
-
"trigger": "workflow_dispatch",
|
|
6605
|
-
"name": "apply",
|
|
6606
|
-
"definition": {
|
|
6607
|
-
"description": "Create refs, protection, default branch, and alpha PR",
|
|
6608
|
-
"required": false,
|
|
6609
|
-
"default": false,
|
|
6610
|
-
"type": "boolean"
|
|
6611
|
-
},
|
|
6612
|
-
"destination": "internal.plan-derived-input"
|
|
6613
|
-
},
|
|
6614
|
-
{
|
|
6615
|
-
"trigger": "workflow_dispatch",
|
|
6616
|
-
"name": "required-status-check",
|
|
6617
|
-
"definition": {
|
|
6618
|
-
"description": "Exact required branch-protection check context",
|
|
6619
|
-
"required": false,
|
|
6620
|
-
"default": "check",
|
|
6621
|
-
"type": "string"
|
|
6622
|
-
},
|
|
6623
|
-
"destination": "internal.plan-derived-input"
|
|
6624
|
-
},
|
|
6625
|
-
{
|
|
6626
|
-
"trigger": "workflow_dispatch",
|
|
6627
|
-
"name": "create-alpha-pr",
|
|
6628
|
-
"definition": {
|
|
6629
|
-
"description": "Open dev -> alpha channel PR",
|
|
6630
|
-
"required": false,
|
|
6631
|
-
"default": true,
|
|
6632
|
-
"type": "boolean"
|
|
6633
|
-
},
|
|
6634
|
-
"destination": "internal.plan-derived-input"
|
|
6635
|
-
},
|
|
6636
|
-
{
|
|
6637
|
-
"trigger": "workflow_dispatch",
|
|
6638
|
-
"name": "set-default-branch",
|
|
6639
|
-
"definition": {
|
|
6640
|
-
"description": "Switch repository default branch to the new dev line",
|
|
6641
|
-
"required": false,
|
|
6642
|
-
"default": true,
|
|
6643
|
-
"type": "boolean"
|
|
6644
|
-
},
|
|
6645
|
-
"destination": "internal.plan-derived-input"
|
|
6646
|
-
},
|
|
6647
|
-
{
|
|
6648
|
-
"trigger": "workflow_dispatch",
|
|
6649
|
-
"name": "runtime-ref",
|
|
6650
|
-
"definition": {
|
|
6651
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6652
|
-
"type": "string",
|
|
6653
|
-
"required": false,
|
|
6654
|
-
"default": ""
|
|
6655
|
-
},
|
|
6656
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6657
|
-
},
|
|
6658
|
-
{
|
|
6659
|
-
"trigger": "workflow_dispatch",
|
|
6660
|
-
"name": "contract-lock",
|
|
6661
|
-
"definition": {
|
|
6662
|
-
"description": "Optional consumer runtime lock path.",
|
|
6663
|
-
"type": "string",
|
|
6664
|
-
"required": false,
|
|
6665
|
-
"default": ""
|
|
6666
|
-
},
|
|
6667
|
-
"destination": "internal.plan-derived-input"
|
|
6668
|
-
}
|
|
6669
|
-
],
|
|
6670
|
-
"calls": []
|
|
6671
|
-
},
|
|
6672
|
-
{
|
|
6673
|
-
"path": ".github/workflows/self-release-next-development.yml",
|
|
6674
|
-
"role": "self",
|
|
6675
|
-
"events": ["workflow_run"],
|
|
6676
|
-
"secrets": [],
|
|
6677
|
-
"outputs": [],
|
|
6678
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6679
|
-
"interfaces": [],
|
|
6680
|
-
"calls": []
|
|
6681
|
-
},
|
|
6682
|
-
{
|
|
6683
|
-
"path": ".github/workflows/self-release-npm-dry-run.yml",
|
|
6684
|
-
"role": "self",
|
|
6685
|
-
"events": ["workflow_dispatch"],
|
|
6686
|
-
"secrets": [],
|
|
6687
|
-
"outputs": [],
|
|
6688
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6689
|
-
"interfaces": [
|
|
6690
|
-
{
|
|
6691
|
-
"trigger": "workflow_dispatch",
|
|
6692
|
-
"name": "ref",
|
|
6693
|
-
"definition": {
|
|
6694
|
-
"description": "Ref to dry-run. Defaults to the selected workflow ref.",
|
|
6695
|
-
"required": false,
|
|
6696
|
-
"default": ""
|
|
6697
|
-
},
|
|
6698
|
-
"destination": "internal.plan-derived-input"
|
|
6699
|
-
},
|
|
6700
|
-
{
|
|
6701
|
-
"trigger": "workflow_dispatch",
|
|
6702
|
-
"name": "run-check",
|
|
6703
|
-
"definition": {
|
|
6704
|
-
"description": "Run the full Buildchain check before npm publish dry-run.",
|
|
6705
|
-
"required": true,
|
|
6706
|
-
"default": true,
|
|
6707
|
-
"type": "boolean"
|
|
6708
|
-
},
|
|
6709
|
-
"destination": "attempt.material-index"
|
|
6710
|
-
},
|
|
6711
|
-
{
|
|
6712
|
-
"trigger": "workflow_dispatch",
|
|
6713
|
-
"name": "runtime-ref",
|
|
6714
|
-
"definition": {
|
|
6715
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6716
|
-
"type": "string",
|
|
6717
|
-
"required": false,
|
|
6718
|
-
"default": ""
|
|
6719
|
-
},
|
|
6720
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6721
|
-
},
|
|
6722
|
-
{
|
|
6723
|
-
"trigger": "workflow_dispatch",
|
|
6724
|
-
"name": "contract-lock",
|
|
6725
|
-
"definition": {
|
|
6726
|
-
"description": "Optional consumer runtime lock path.",
|
|
6727
|
-
"type": "string",
|
|
6728
|
-
"required": false,
|
|
6729
|
-
"default": ""
|
|
6730
|
-
},
|
|
6731
|
-
"destination": "internal.plan-derived-input"
|
|
6732
|
-
}
|
|
6733
|
-
],
|
|
6734
|
-
"calls": []
|
|
6735
|
-
},
|
|
6736
|
-
{
|
|
6737
|
-
"path": ".github/workflows/self-release-promote.yml",
|
|
6738
|
-
"role": "self",
|
|
6739
|
-
"events": ["workflow_dispatch", "workflow_run"],
|
|
6740
|
-
"secrets": [],
|
|
6741
|
-
"outputs": [],
|
|
6742
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6743
|
-
"interfaces": [
|
|
6744
|
-
{
|
|
6745
|
-
"trigger": "workflow_dispatch",
|
|
6746
|
-
"name": "sha",
|
|
6747
|
-
"definition": {
|
|
6748
|
-
"description": "Verified alpha/release commit to promote. Defaults to the current workflow ref SHA.",
|
|
6749
|
-
"required": false,
|
|
6750
|
-
"default": ""
|
|
6751
|
-
},
|
|
6752
|
-
"destination": "internal.plan-derived-input"
|
|
6753
|
-
},
|
|
6754
|
-
{
|
|
6755
|
-
"trigger": "workflow_dispatch",
|
|
6756
|
-
"name": "target-ref",
|
|
6757
|
-
"definition": {
|
|
6758
|
-
"description": "Buildchain channel branch to promote",
|
|
6759
|
-
"required": true,
|
|
6760
|
-
"default": "alpha/v4/v4.1"
|
|
6761
|
-
},
|
|
6762
|
-
"destination": "internal.plan-derived-input"
|
|
6763
|
-
},
|
|
6764
|
-
{
|
|
6765
|
-
"trigger": "workflow_dispatch",
|
|
6766
|
-
"name": "dry-run",
|
|
6767
|
-
"definition": {
|
|
6768
|
-
"description": "Only print planned tag updates",
|
|
6769
|
-
"required": true,
|
|
6770
|
-
"default": "true"
|
|
6771
|
-
},
|
|
6772
|
-
"destination": "attempt.material-index"
|
|
6773
|
-
},
|
|
6774
|
-
{
|
|
6775
|
-
"trigger": "workflow_dispatch",
|
|
6776
|
-
"name": "recover-durable-transaction",
|
|
6777
|
-
"definition": {
|
|
6778
|
-
"description": "Recover an existing durable transaction from its exact original source SHA using fresh GitHub-hosted admission",
|
|
6779
|
-
"required": true,
|
|
6780
|
-
"default": false,
|
|
6781
|
-
"type": "boolean"
|
|
6782
|
-
},
|
|
6783
|
-
"destination": "attempt.material-index"
|
|
6784
|
-
},
|
|
6785
|
-
{
|
|
6786
|
-
"trigger": "workflow_dispatch",
|
|
6787
|
-
"name": "publication-admission-json",
|
|
6788
|
-
"definition": {
|
|
6789
|
-
"description": "Fresh sealed admission JSON required for manual apply",
|
|
6790
|
-
"required": false,
|
|
6791
|
-
"default": ""
|
|
6792
|
-
},
|
|
6793
|
-
"destination": "internal.plan-derived-input"
|
|
6794
|
-
},
|
|
6795
|
-
{
|
|
6796
|
-
"trigger": "workflow_dispatch",
|
|
6797
|
-
"name": "publication-runner-provenance-json",
|
|
6798
|
-
"definition": {
|
|
6799
|
-
"description": "Runner provenance receipt JSON bound by the admission",
|
|
6800
|
-
"required": false,
|
|
6801
|
-
"default": ""
|
|
6802
|
-
},
|
|
6803
|
-
"destination": "attempt.material-index"
|
|
6804
|
-
},
|
|
6805
|
-
{
|
|
6806
|
-
"trigger": "workflow_dispatch",
|
|
6807
|
-
"name": "publication-control-plane-audit-json",
|
|
6808
|
-
"definition": {
|
|
6809
|
-
"description": "Fresh external control-plane audit receipt JSON",
|
|
6810
|
-
"required": false,
|
|
6811
|
-
"default": ""
|
|
6812
|
-
},
|
|
6813
|
-
"destination": "internal.plan-derived-input"
|
|
6814
|
-
},
|
|
6815
|
-
{
|
|
6816
|
-
"trigger": "workflow_dispatch",
|
|
6817
|
-
"name": "publication-gate-aggregate-json",
|
|
6818
|
-
"definition": {
|
|
6819
|
-
"description": "Qualifying Shifu Gate aggregate or explicit consumer-owned no-Gate decision",
|
|
6820
|
-
"required": false,
|
|
6821
|
-
"default": ""
|
|
6822
|
-
},
|
|
6823
|
-
"destination": "internal.plan-derived-input"
|
|
6824
|
-
},
|
|
6825
|
-
{
|
|
6826
|
-
"trigger": "workflow_dispatch",
|
|
6827
|
-
"name": "publication-expected-json",
|
|
6828
|
-
"definition": {
|
|
6829
|
-
"description": "Independent exact publication bindings JSON",
|
|
6830
|
-
"required": false,
|
|
6831
|
-
"default": ""
|
|
6832
|
-
},
|
|
6833
|
-
"destination": "internal.plan-derived-input"
|
|
6834
|
-
},
|
|
6835
|
-
{
|
|
6836
|
-
"trigger": "workflow_dispatch",
|
|
6837
|
-
"name": "publication-used-nonces-json",
|
|
6838
|
-
"definition": {
|
|
6839
|
-
"description": "JSON array of consumed admission nonces",
|
|
6840
|
-
"required": false,
|
|
6841
|
-
"default": "[]"
|
|
6842
|
-
},
|
|
6843
|
-
"destination": "attempt.internal-authority"
|
|
6844
|
-
},
|
|
6845
|
-
{
|
|
6846
|
-
"trigger": "workflow_dispatch",
|
|
6847
|
-
"name": "release-passport-v4-runtime-resume-evidence-json",
|
|
6848
|
-
"definition": {
|
|
6849
|
-
"description": "Verified runtime A+B Stage Capsule resume evidence JSON",
|
|
6850
|
-
"required": false,
|
|
6851
|
-
"default": ""
|
|
6852
|
-
},
|
|
6853
|
-
"destination": "attempt.material-index"
|
|
6854
|
-
},
|
|
6855
|
-
{
|
|
6856
|
-
"trigger": "workflow_dispatch",
|
|
6857
|
-
"name": "resume-candidate-repository",
|
|
6858
|
-
"definition": {
|
|
6859
|
-
"description": "Repository that owns the sealed candidate run",
|
|
6860
|
-
"required": false,
|
|
6861
|
-
"default": ""
|
|
6862
|
-
},
|
|
6863
|
-
"destination": "attempt.material-index"
|
|
6864
|
-
},
|
|
6865
|
-
{
|
|
6866
|
-
"trigger": "workflow_dispatch",
|
|
6867
|
-
"name": "resume-candidate-run-id",
|
|
6868
|
-
"definition": {
|
|
6869
|
-
"description": "Exact successful Build Surface Fixture run ID to recover",
|
|
6870
|
-
"required": false,
|
|
6871
|
-
"default": ""
|
|
6872
|
-
},
|
|
6873
|
-
"destination": "attempt.material-index"
|
|
6874
|
-
},
|
|
6875
|
-
{
|
|
6876
|
-
"trigger": "workflow_dispatch",
|
|
6877
|
-
"name": "resume-expected-source-tree",
|
|
6878
|
-
"definition": {
|
|
6879
|
-
"description": "Exact Git tree recorded for the candidate",
|
|
6880
|
-
"required": false,
|
|
6881
|
-
"default": ""
|
|
6882
|
-
},
|
|
6883
|
-
"destination": "attempt.material-index"
|
|
6884
|
-
},
|
|
6885
|
-
{
|
|
6886
|
-
"trigger": "workflow_dispatch",
|
|
6887
|
-
"name": "resume-expected-candidate-root",
|
|
6888
|
-
"definition": {
|
|
6889
|
-
"description": "Optional exact sha256 Release Candidate root",
|
|
6890
|
-
"required": false,
|
|
6891
|
-
"default": ""
|
|
6892
|
-
},
|
|
6893
|
-
"destination": "attempt.material-index"
|
|
6894
|
-
},
|
|
6895
|
-
{
|
|
6896
|
-
"trigger": "workflow_dispatch",
|
|
6897
|
-
"name": "resume-discussion-id",
|
|
6898
|
-
"definition": {
|
|
6899
|
-
"description": "Existing release Discussion ID whose retained materials will be recovered.",
|
|
6900
|
-
"type": "string",
|
|
6901
|
-
"default": ""
|
|
6902
|
-
},
|
|
6903
|
-
"destination": "attempt.material-index"
|
|
6904
|
-
},
|
|
6905
|
-
{
|
|
6906
|
-
"trigger": "workflow_dispatch",
|
|
6907
|
-
"name": "resume-transaction-id",
|
|
6908
|
-
"definition": {
|
|
6909
|
-
"description": "Optional existing durable transaction identity",
|
|
6910
|
-
"required": false,
|
|
6911
|
-
"default": ""
|
|
6912
|
-
},
|
|
6913
|
-
"destination": "attempt.material-index"
|
|
6914
|
-
},
|
|
6915
|
-
{
|
|
6916
|
-
"trigger": "workflow_dispatch",
|
|
6917
|
-
"name": "runtime-ref",
|
|
6918
|
-
"definition": {
|
|
6919
|
-
"description": "Transient execution runtime; empty selects the consumer lock.",
|
|
6920
|
-
"type": "string",
|
|
6921
|
-
"required": false,
|
|
6922
|
-
"default": ""
|
|
6923
|
-
},
|
|
6924
|
-
"destination": "recovery-entry.runtime-ref"
|
|
6925
|
-
},
|
|
6926
|
-
{
|
|
6927
|
-
"trigger": "workflow_dispatch",
|
|
6928
|
-
"name": "contract-lock",
|
|
6929
|
-
"definition": {
|
|
6930
|
-
"description": "Optional consumer runtime lock path.",
|
|
6931
|
-
"type": "string",
|
|
6932
|
-
"required": false,
|
|
6933
|
-
"default": ""
|
|
6934
|
-
},
|
|
6935
|
-
"destination": "internal.plan-derived-input"
|
|
6936
|
-
}
|
|
6937
|
-
],
|
|
6938
|
-
"calls": [
|
|
6939
|
-
{
|
|
6940
|
-
"id": "promote",
|
|
6941
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-release-promote.yml@v4",
|
|
6942
|
-
"inputs": ["request-json", "runtime-selection"],
|
|
6943
|
-
"destination": "internal.workflow-composition"
|
|
6944
|
-
}
|
|
6945
|
-
]
|
|
6946
|
-
},
|
|
6947
|
-
{
|
|
6948
|
-
"path": ".github/workflows/self-release-rehearsal-dogfood.yml",
|
|
6949
|
-
"role": "self",
|
|
6950
|
-
"events": ["pull_request", "workflow_dispatch"],
|
|
6951
|
-
"secrets": [],
|
|
6952
|
-
"outputs": [],
|
|
6953
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6954
|
-
"interfaces": [],
|
|
6955
|
-
"calls": [
|
|
6956
|
-
{
|
|
6957
|
-
"id": "rehearsal",
|
|
6958
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-release-tail.yml@v4",
|
|
6959
|
-
"inputs": [
|
|
6960
|
-
"candidate-root",
|
|
6961
|
-
"execute",
|
|
6962
|
-
"rehearsal-capsule-path",
|
|
6963
|
-
"rehearsal-evidence-path",
|
|
6964
|
-
"rehearsal-mode",
|
|
6965
|
-
"state-path"
|
|
6966
|
-
],
|
|
6967
|
-
"destination": "internal.workflow-composition"
|
|
6968
|
-
}
|
|
6969
|
-
]
|
|
6970
|
-
},
|
|
6971
|
-
{
|
|
6972
|
-
"path": ".github/workflows/self-release-tail-dogfood.yml",
|
|
6973
|
-
"role": "self",
|
|
6974
|
-
"events": ["workflow_dispatch"],
|
|
6975
|
-
"secrets": [],
|
|
6976
|
-
"outputs": [],
|
|
6977
|
-
"destination": "self-dogfood.two-callers-or-internal-component",
|
|
6978
|
-
"interfaces": [
|
|
6979
|
-
{
|
|
6980
|
-
"trigger": "workflow_dispatch",
|
|
6981
|
-
"name": "target-sha",
|
|
6982
|
-
"definition": {
|
|
6983
|
-
"description": "Exact protected alpha/v4/v4.1 candidate SHA",
|
|
6984
|
-
"required": true,
|
|
6985
|
-
"type": "string"
|
|
6986
|
-
},
|
|
6987
|
-
"destination": "internal.plan-derived-input"
|
|
6988
|
-
},
|
|
6989
|
-
{
|
|
6990
|
-
"trigger": "workflow_dispatch",
|
|
6991
|
-
"name": "failure-after-capability",
|
|
6992
|
-
"definition": {
|
|
6993
|
-
"description": "Checkpointed capability after which the first provider invocation is interrupted",
|
|
6994
|
-
"default": "artifact.publish",
|
|
6995
|
-
"required": false,
|
|
6996
|
-
"type": "string"
|
|
6997
|
-
},
|
|
6998
|
-
"destination": "internal.plan-derived-input"
|
|
6999
|
-
}
|
|
7000
|
-
],
|
|
7001
|
-
"calls": [
|
|
7002
|
-
{
|
|
7003
|
-
"id": "publish",
|
|
7004
|
-
"uses": "kungfu-systems/buildchain/.github/workflows/public-release-promote.yml@v4",
|
|
7005
|
-
"inputs": ["request-json"],
|
|
7006
|
-
"destination": "internal.workflow-composition"
|
|
7007
|
-
}
|
|
7008
|
-
]
|
|
7009
|
-
}
|
|
7010
|
-
],
|
|
7011
|
-
"consumerSources": [
|
|
7012
|
-
{
|
|
7013
|
-
"path": ".buildchain/alpha-contract-lock.json",
|
|
7014
|
-
"kind": "consumer-source",
|
|
7015
|
-
"destination": "retain-product-source; move-orchestration-into-runtime",
|
|
7016
|
-
"commandReferences": []
|
|
7017
|
-
},
|
|
7018
|
-
{
|
|
7019
|
-
"path": ".buildchain/auditable-demo.json",
|
|
7020
|
-
"kind": "consumer-source",
|
|
7021
|
-
"destination": "retain-product-source; move-orchestration-into-runtime",
|
|
7022
|
-
"commandReferences": []
|
|
5118
|
+
"path": ".buildchain/auditable-demo.json",
|
|
5119
|
+
"kind": "consumer-source",
|
|
5120
|
+
"destination": "retain-product-source; move-orchestration-into-runtime",
|
|
5121
|
+
"commandReferences": []
|
|
7023
5122
|
},
|
|
7024
5123
|
{
|
|
7025
5124
|
"path": ".buildchain/buildchain.toml",
|
|
7026
5125
|
"kind": "config",
|
|
7027
5126
|
"destination": "closed-toml-plan",
|
|
7028
5127
|
"commandReferences": [
|
|
7029
|
-
"
|
|
7030
|
-
"scripts/
|
|
5128
|
+
"scripts/build-standalone-binary.mjs",
|
|
5129
|
+
"scripts/prepare-product-toolchain.mjs",
|
|
5130
|
+
"scripts/verify-product-platform.mjs",
|
|
5131
|
+
"scripts/verify-standalone-product.mjs"
|
|
7031
5132
|
]
|
|
7032
5133
|
},
|
|
7033
5134
|
{
|
|
@@ -7042,6 +5143,8 @@
|
|
|
7042
5143
|
"destination": "closed-toml-plan",
|
|
7043
5144
|
"commandReferences": [
|
|
7044
5145
|
"scripts/build-standalone-binary.mjs",
|
|
5146
|
+
"scripts/prepare-product-toolchain.mjs",
|
|
5147
|
+
"scripts/verify-product-platform.mjs",
|
|
7045
5148
|
"scripts/verify-standalone-product.mjs"
|
|
7046
5149
|
]
|
|
7047
5150
|
},
|