@kungfu-tech/buildchain 4.0.1-alpha.2 → 4.0.1-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/architecture/decisions/0003-two-phase-delivery-warrant.md +152 -0
- package/architecture/internal-capabilities.json +94 -0
- package/architecture/maintainability-policy.json +75 -8
- package/architecture/v3-core-mechanism-inventory.json +2 -0
- package/architecture/v4-delivery-authority-parity.json +250 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +29 -6
- package/bin/buildchain.mjs +9 -1
- package/contracts/dev-delivery-authority-v2.schema.json +662 -0
- package/dist/site/agent-index.json +1 -0
- package/dist/site/artifact-schemas.json +2 -0
- package/dist/site/buildchain-contract.json +89 -6
- package/dist/site/buildchain-site.json +169 -18
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/cli-registry.json +46 -2
- package/dist/site/kfd-claims.json +43 -9
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +1694 -165
- package/dist/site/page-registry.json +162 -11
- package/dist/site/public-surface-audit.json +367 -7
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +2 -0
- package/dist/site/schemas/dev-delivery-authority-v2.schema.json +662 -0
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +22 -6
- package/docs/MAP.md +1 -0
- package/docs/cli-reference.md +211 -13
- package/docs/dev-delivery-qualification-landing-adr.md +251 -0
- package/docs/dev-delivery-warrant.md +326 -38
- package/docs/node-api-reference.md +113 -53
- package/package.json +5 -1
- package/packages/core/buildchain-contract.js +3 -2
- package/packages/core/dev-delivery-authority-candidate.js +270 -0
- package/packages/core/dev-delivery-authority-evidence.js +146 -0
- package/packages/core/dev-delivery-authority-landing.js +461 -0
- package/packages/core/dev-delivery-authority-observation.js +48 -0
- package/packages/core/dev-delivery-authority-qualification.js +591 -0
- package/packages/core/dev-delivery-authority-settlement.js +213 -0
- package/packages/core/dev-delivery-authority-state.js +583 -0
- package/packages/core/dev-delivery-candidate-identity.js +13 -0
- package/packages/core/dev-delivery-contract-surface.js +76 -0
- package/packages/core/dev-delivery-execution-failure.js +133 -0
- package/packages/core/dev-delivery-execution-transfer.js +572 -0
- package/packages/core/dev-delivery-landing-admission-core.js +119 -0
- package/packages/core/dev-delivery-landing-readback.js +598 -0
- package/packages/core/dev-delivery-landing-terminal-evidence.js +271 -0
- package/packages/core/dev-delivery-landing-testing-port.js +6 -0
- package/packages/core/dev-delivery-native-execution.js +110 -0
- package/packages/core/dev-delivery-native-proof.js +546 -0
- package/packages/core/dev-delivery-process-boundary.js +551 -0
- package/packages/core/dev-delivery-provider-attempt.js +127 -0
- package/packages/core/dev-delivery-provider-heartbeat.js +370 -0
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-qualification.js +145 -0
- package/packages/core/dev-delivery-warrant-settlement.js +237 -36
- package/packages/core/dev-delivery-warrant-state.js +565 -0
- package/packages/core/dev-delivery-warrant.js +320 -368
- package/scripts/buildchain-cli-help.mjs +11 -2
- package/scripts/dev-delivery-authority-command-adapters.mjs +206 -0
- package/scripts/dev-delivery-authority-provider.mjs +28 -0
- package/scripts/dev-delivery-authority.mjs +490 -0
- package/scripts/dev-delivery-native-run.mjs +177 -0
- package/scripts/dev-delivery-process-boundary.mjs +260 -0
- package/scripts/dev-delivery-proof.mjs +67 -2
- package/scripts/dev-delivery-provider-heartbeat.mjs +215 -0
- package/scripts/dev-delivery-two-phase-resume.mjs +345 -0
- package/scripts/dev-delivery-two-phase.mjs +573 -0
- package/scripts/dev-delivery-warrant-options.mjs +266 -0
- package/scripts/dev-delivery-warrant-store.mjs +227 -0
- package/scripts/dev-delivery-warrant.mjs +227 -193
- package/scripts/dev-pr-delivery-warrant.mjs +10 -0
- package/scripts/generate-site-bundle.mjs +26 -4
- package/scripts/npm-publish-transaction.mjs +2 -2
- package/scripts/site-capability-metadata.mjs +12 -0
- package/templates/native-dev-delivery.yml +141 -0
|
@@ -46,6 +46,10 @@ import {
|
|
|
46
46
|
const SITE_BUNDLE_CONTRACT = "kungfu-buildchain-site-bundle";
|
|
47
47
|
const PUBLICATION_RELEASE_REGISTRY_CONTRACT = "kungfu-buildchain-publication-release-registry";
|
|
48
48
|
const README_PATH = "README.md";
|
|
49
|
+
const DEV_DELIVERY_AUTHORITY_SCHEMA =
|
|
50
|
+
"schemas/dev-delivery-authority-v2.schema.json";
|
|
51
|
+
const DEV_DELIVERY_AUTHORITY_SCHEMA_SOURCE =
|
|
52
|
+
"contracts/dev-delivery-authority-v2.schema.json";
|
|
49
53
|
const root = path.resolve(import.meta.dirname, "..");
|
|
50
54
|
const outputDir = path.join(root, "dist", "site");
|
|
51
55
|
const requireFromHere = createRequire(import.meta.url);
|
|
@@ -73,6 +77,18 @@ function stableJson(value) {
|
|
|
73
77
|
return `${JSON.stringify(value, null, 2)}\n`;
|
|
74
78
|
}
|
|
75
79
|
|
|
80
|
+
function siteFileBytes(name, value) {
|
|
81
|
+
return name === DEV_DELIVERY_AUTHORITY_SCHEMA
|
|
82
|
+
? readText(DEV_DELIVERY_AUTHORITY_SCHEMA_SOURCE)
|
|
83
|
+
: stableJson(value);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function writeSiteFile(name, value) {
|
|
87
|
+
const filePath = path.join(outputDir, name);
|
|
88
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
89
|
+
fs.writeFileSync(filePath, siteFileBytes(name, value));
|
|
90
|
+
}
|
|
91
|
+
|
|
76
92
|
function env(name) {
|
|
77
93
|
return String(process.env[name] || "").trim();
|
|
78
94
|
}
|
|
@@ -931,6 +947,7 @@ function buildSiteBundle() {
|
|
|
931
947
|
"schemas/release-passport-v1.schema.json",
|
|
932
948
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
933
949
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
950
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
934
951
|
"kfd-support.json",
|
|
935
952
|
"artifact-evidence.json",
|
|
936
953
|
"product-mechanism.json",
|
|
@@ -965,6 +982,7 @@ function buildSiteBundle() {
|
|
|
965
982
|
"schemas/release-passport-v1.schema.json",
|
|
966
983
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
967
984
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
985
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
968
986
|
"buildchain-contract.json",
|
|
969
987
|
"kfd-claims.json",
|
|
970
988
|
"product-mechanism.json",
|
|
@@ -1095,6 +1113,7 @@ function buildSiteBundle() {
|
|
|
1095
1113
|
"schemas/release-passport-v1.schema.json",
|
|
1096
1114
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
1097
1115
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
1116
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
1098
1117
|
"buildchain-contract.json",
|
|
1099
1118
|
"kfd-upstream-aggregate.json",
|
|
1100
1119
|
"kfd-claims.json",
|
|
@@ -1269,6 +1288,9 @@ function buildSiteBundle() {
|
|
|
1269
1288
|
"schemas/release-passport-v1.schema.json": RELEASE_PASSPORT_SCHEMA,
|
|
1270
1289
|
"schemas/kfd-agent-hub-adoption.schema.json": KFD_AGENT_HUB_ADOPTION_SCHEMA,
|
|
1271
1290
|
"schemas/kfd-product-gate-input-v1.schema.json": KFD_PRODUCT_GATE_INPUT_SCHEMA,
|
|
1291
|
+
[DEV_DELIVERY_AUTHORITY_SCHEMA]: readJson(
|
|
1292
|
+
DEV_DELIVERY_AUTHORITY_SCHEMA_SOURCE,
|
|
1293
|
+
),
|
|
1272
1294
|
"badge-endpoint-registry.json": badgeEndpointRegistry,
|
|
1273
1295
|
"publication-registry.json": publicationRegistry,
|
|
1274
1296
|
"buildchain-contract.json": createBuildchainContractWorld({ root, controllerRegistry }),
|
|
@@ -1288,7 +1310,7 @@ export function writeSiteBundle({ check = false } = {}) {
|
|
|
1288
1310
|
const mismatches = [];
|
|
1289
1311
|
for (const [name, value] of Object.entries(files)) {
|
|
1290
1312
|
const filePath = path.join(outputDir, name);
|
|
1291
|
-
const next =
|
|
1313
|
+
const next = siteFileBytes(name, value);
|
|
1292
1314
|
if (check) {
|
|
1293
1315
|
if (existingJson(filePath) !== next) {
|
|
1294
1316
|
mismatches.push(path.relative(root, filePath));
|
|
@@ -1301,11 +1323,11 @@ export function writeSiteBundle({ check = false } = {}) {
|
|
|
1301
1323
|
if (!check) {
|
|
1302
1324
|
for (let iteration = 0; iteration < 5; iteration += 1) {
|
|
1303
1325
|
for (const [name, value] of Object.entries(files)) {
|
|
1304
|
-
|
|
1326
|
+
writeSiteFile(name, value);
|
|
1305
1327
|
}
|
|
1306
1328
|
const nextFiles = buildSiteBundle();
|
|
1307
1329
|
const stable = Object.entries(nextFiles).every(([name, value]) => (
|
|
1308
|
-
existingJson(path.join(outputDir, name)) ===
|
|
1330
|
+
existingJson(path.join(outputDir, name)) === siteFileBytes(name, value)
|
|
1309
1331
|
));
|
|
1310
1332
|
files = nextFiles;
|
|
1311
1333
|
if (stable) {
|
|
@@ -1316,7 +1338,7 @@ export function writeSiteBundle({ check = false } = {}) {
|
|
|
1316
1338
|
}
|
|
1317
1339
|
}
|
|
1318
1340
|
for (const [name, value] of Object.entries(files)) {
|
|
1319
|
-
|
|
1341
|
+
writeSiteFile(name, value);
|
|
1320
1342
|
}
|
|
1321
1343
|
}
|
|
1322
1344
|
return {
|
|
@@ -128,8 +128,8 @@ function parseNpmView(stdout) {
|
|
|
128
128
|
const parsed = JSON.parse(raw);
|
|
129
129
|
const dist = parsed?.dist || parsed;
|
|
130
130
|
return {
|
|
131
|
-
integrity: dist?.integrity || "",
|
|
132
|
-
shasum: dist?.shasum || "",
|
|
131
|
+
integrity: dist?.integrity || parsed?.["dist.integrity"] || "",
|
|
132
|
+
shasum: dist?.shasum || parsed?.["dist.shasum"] || "",
|
|
133
133
|
};
|
|
134
134
|
}
|
|
135
135
|
|
|
@@ -92,6 +92,17 @@ export function cliCommandMeta(id) {
|
|
|
92
92
|
"kfd-upstream-roles": { group: "kfd-trust", purpose: "List Buildchain-managed KFD upstream role values and inference policy." },
|
|
93
93
|
lifecycle: { group: "reusable-build", purpose: "Run configured lifecycle commands and write deterministic artifact manifests." },
|
|
94
94
|
dev: { group: "governance-versioning", purpose: "Inspect protected development-channel governance command families." },
|
|
95
|
+
"dev-authority-admit-merge-group": { group: "governance-versioning", purpose: "Verify that one exact candidate holds the exclusive Landing Warrant before merge_group admission." },
|
|
96
|
+
"dev-authority-complete-qualification": { group: "governance-versioning", purpose: "Bind qualification evidence and release one bounded Qualification Lease without granting landing authority." },
|
|
97
|
+
"dev-authority-heartbeat-landing": { group: "governance-versioning", purpose: "Extend the exact fenced Landing Warrant while final landing work remains live." },
|
|
98
|
+
"dev-authority-heartbeat-qualification": { group: "governance-versioning", purpose: "Extend one exact fenced Qualification Lease while qualification work remains live." },
|
|
99
|
+
"dev-authority-lease-landing": { group: "governance-versioning", purpose: "Issue or retain the single exclusive Landing Warrant for a qualified candidate." },
|
|
100
|
+
"dev-authority-lease-qualification": { group: "governance-versioning", purpose: "Issue one qualification-only lease within the configured bounded lane count." },
|
|
101
|
+
"dev-authority-migrate": { group: "governance-versioning", purpose: "Migrate one exact v1 Warrant state into v2 without rewriting candidate or fencing evidence." },
|
|
102
|
+
"dev-authority-observe": { group: "governance-versioning", purpose: "Read bounded Qualification Leases and the exclusive Landing Warrant without mutating authority." },
|
|
103
|
+
"dev-authority-recover": { group: "governance-versioning", purpose: "Recover expired qualification or Landing authority and emit one rooted wake instruction." },
|
|
104
|
+
"dev-authority-settle": { group: "governance-versioning", purpose: "Settle terminal candidate evidence idempotently and release held qualification or Landing authority immediately." },
|
|
105
|
+
"dev-authority-submit": { group: "governance-versioning", purpose: "Submit an exact candidate to the opt-in bounded-qualification authority state." },
|
|
95
106
|
"dev-proof-classify": { group: "governance-versioning", purpose: "Classify source-qualified candidate changes against a current integration base." },
|
|
96
107
|
"dev-proof-integration": { group: "governance-versioning", purpose: "Seal final exact integration delivery proof for a warranted candidate." },
|
|
97
108
|
"dev-proof-replay": { group: "governance-versioning", purpose: "Replay source qualification against a Project Cut without rewriting candidate source." },
|
|
@@ -174,6 +185,7 @@ export function nodeApiMeta(exportName) {
|
|
|
174
185
|
"./build-facts": { group: "observability-diagnostics", summary: "Git source, version, module output, product artifact, and legacy Kungfu build fact APIs." },
|
|
175
186
|
"./candidate-timeline": { group: "observability-diagnostics", summary: "Source-bound candidate event normalization, per-attempt critical-path-safe aggregation, and compact reporting APIs." },
|
|
176
187
|
"./channel-candidate": { group: "governance-versioning", summary: "Exact-source channel candidate decisions, same-SHA workflow evidence validation, and deterministic source-lock reference APIs." },
|
|
188
|
+
"./dev-delivery-authority": { group: "governance-versioning", summary: "Opt-in bounded Qualification Lease, exclusive Landing Warrant, provider-attempt admission and heartbeat readback, terminal sealing, and expired-Landing verification APIs." },
|
|
177
189
|
"./dev-delivery-warrant": { group: "governance-versioning", summary: "Durable fair Dev Delivery Warrant queue, fenced lease, and split source and integration proof APIs." },
|
|
178
190
|
"./cache-evidence": { group: "observability-diagnostics", summary: "Content-addressed cache operation receipts and source/platform-bound evidence-set verification APIs." },
|
|
179
191
|
"./diagnostics": { group: "observability-diagnostics", summary: "Native diagnostics collection, summarization, cache, compiler, and process-sampler APIs." },
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
name: Protected Dev Delivery
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
repository_dispatch:
|
|
5
|
+
types: [buildchain-dev-delivery-wake]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
inputs:
|
|
8
|
+
buildchain-ref:
|
|
9
|
+
description: "Buildchain runtime selector: v4, v4-alpha, or a trusted train/v4/v4.0/<capability>"
|
|
10
|
+
required: false
|
|
11
|
+
default: "v4-alpha"
|
|
12
|
+
target-branch:
|
|
13
|
+
description: "Protected dev/vN/vN.M branch"
|
|
14
|
+
required: true
|
|
15
|
+
expected-pr-number:
|
|
16
|
+
description: "Exact ready and approved PR number"
|
|
17
|
+
required: true
|
|
18
|
+
type: number
|
|
19
|
+
expected-head-sha:
|
|
20
|
+
description: "Exact immutable PR head"
|
|
21
|
+
required: true
|
|
22
|
+
source-workflow-run-id:
|
|
23
|
+
description: "Exact successful source workflow run"
|
|
24
|
+
required: false
|
|
25
|
+
type: number
|
|
26
|
+
default: 0
|
|
27
|
+
legacy-active-owner-binding-json:
|
|
28
|
+
description: "Explicit legacy-safe phase-less owner binding JSON"
|
|
29
|
+
required: false
|
|
30
|
+
default: ""
|
|
31
|
+
source-workflow-id:
|
|
32
|
+
description: "Pull-request workflow used only to recover a historical active owner with no recorded run"
|
|
33
|
+
required: false
|
|
34
|
+
default: ""
|
|
35
|
+
source-identity-root:
|
|
36
|
+
description: "Semantic source identity root"
|
|
37
|
+
required: true
|
|
38
|
+
source-patch-root:
|
|
39
|
+
description: "Semantic patch root"
|
|
40
|
+
required: true
|
|
41
|
+
assignment-root:
|
|
42
|
+
description: "Native Assignment root"
|
|
43
|
+
required: true
|
|
44
|
+
initiative-root:
|
|
45
|
+
description: "Parent Initiative root"
|
|
46
|
+
required: true
|
|
47
|
+
plan-root:
|
|
48
|
+
description: "Native qualification plan root"
|
|
49
|
+
required: true
|
|
50
|
+
closure-root:
|
|
51
|
+
description: "Affected closure root"
|
|
52
|
+
required: true
|
|
53
|
+
dependency-root:
|
|
54
|
+
description: "Dependency graph root"
|
|
55
|
+
required: true
|
|
56
|
+
toolchain-root:
|
|
57
|
+
description: "Native toolchain root"
|
|
58
|
+
required: true
|
|
59
|
+
environment-root:
|
|
60
|
+
description: "Exact native execution environment contract root bound before native spawn"
|
|
61
|
+
required: false
|
|
62
|
+
default: ""
|
|
63
|
+
affected-paths-json:
|
|
64
|
+
description: "JSON array representing the affected closure"
|
|
65
|
+
required: true
|
|
66
|
+
shard-evidence-roots-json:
|
|
67
|
+
description: "JSON array of exact native shard evidence roots"
|
|
68
|
+
required: false
|
|
69
|
+
default: "[]"
|
|
70
|
+
release-blocker-priority-json:
|
|
71
|
+
description: "Optional exact rooted release-blocker priority claim"
|
|
72
|
+
required: false
|
|
73
|
+
default: ""
|
|
74
|
+
native-proof-json:
|
|
75
|
+
description: "Optional reusable native proof"
|
|
76
|
+
required: false
|
|
77
|
+
default: ""
|
|
78
|
+
native-command:
|
|
79
|
+
description: "Slow native qualification command"
|
|
80
|
+
required: false
|
|
81
|
+
default: ""
|
|
82
|
+
native-command-root:
|
|
83
|
+
description: "Optional exact native command contract root"
|
|
84
|
+
required: false
|
|
85
|
+
default: ""
|
|
86
|
+
native-heartbeat-seconds:
|
|
87
|
+
description: "Heartbeat cadence while native qualification runs"
|
|
88
|
+
required: false
|
|
89
|
+
type: number
|
|
90
|
+
default: 300
|
|
91
|
+
delivery-class:
|
|
92
|
+
description: "Bounded delivery class"
|
|
93
|
+
required: false
|
|
94
|
+
default: "native-proof-required"
|
|
95
|
+
delivery-priority:
|
|
96
|
+
description: "Reviewed delivery priority"
|
|
97
|
+
required: false
|
|
98
|
+
default: "ordinary"
|
|
99
|
+
|
|
100
|
+
permissions:
|
|
101
|
+
actions: write
|
|
102
|
+
contents: write
|
|
103
|
+
pull-requests: write
|
|
104
|
+
checks: read
|
|
105
|
+
statuses: write
|
|
106
|
+
|
|
107
|
+
jobs:
|
|
108
|
+
deliver:
|
|
109
|
+
uses: kungfu-systems/buildchain/.github/workflows/dev-pr-auto-merge.yml@v4-alpha
|
|
110
|
+
with:
|
|
111
|
+
buildchain-ref: ${{ inputs.buildchain-ref || 'v4-alpha' }}
|
|
112
|
+
target-branch: ${{ github.event.client_payload.candidate.targetBranch || inputs.target-branch }}
|
|
113
|
+
expected-pr-number: ${{ github.event.client_payload.candidate.pullRequestNumber || inputs.expected-pr-number }}
|
|
114
|
+
expected-head-sha: ${{ github.event.client_payload.candidate.sourceHead || inputs.expected-head-sha }}
|
|
115
|
+
source-workflow-run-id: ${{ github.event.client_payload.candidate.sourceWorkflowRunId || inputs.source-workflow-run-id || github.run_id }}
|
|
116
|
+
legacy-active-owner-binding-json: ${{ inputs.legacy-active-owner-binding-json || '' }}
|
|
117
|
+
delivery-warrant-mode: required
|
|
118
|
+
handoff-workflow-id: native-dev-delivery.yml
|
|
119
|
+
source-workflow-id: ${{ inputs.source-workflow-id || '' }}
|
|
120
|
+
assignment-root: ${{ github.event.client_payload.candidate.assignmentRoot || inputs.assignment-root }}
|
|
121
|
+
initiative-root: ${{ github.event.client_payload.candidate.initiativeRoot || inputs.initiative-root }}
|
|
122
|
+
source-identity-root: ${{ github.event.client_payload.candidate.sourceIdentityRoot || inputs.source-identity-root }}
|
|
123
|
+
source-patch-root: ${{ github.event.client_payload.candidate.sourcePatchRoot || inputs.source-patch-root }}
|
|
124
|
+
plan-root: ${{ github.event.client_payload.candidate.planRoot || inputs.plan-root }}
|
|
125
|
+
closure-root: ${{ github.event.client_payload.candidate.closureRoot || inputs.closure-root }}
|
|
126
|
+
dependency-root: ${{ github.event.client_payload.candidate.dependencyRoot || inputs.dependency-root }}
|
|
127
|
+
toolchain-root: ${{ github.event.client_payload.candidate.toolchainRoot || inputs.toolchain-root }}
|
|
128
|
+
environment-root: ${{ github.event.client_payload.candidate.environmentRoot || inputs.environment-root }}
|
|
129
|
+
affected-paths-json: ${{ github.event_name == 'repository_dispatch' && toJSON(github.event.client_payload.candidate.affectedPaths) || inputs.affected-paths-json }}
|
|
130
|
+
shard-evidence-roots-json: ${{ github.event_name == 'repository_dispatch' && toJSON(github.event.client_payload.candidate.shardEvidenceRoots) || inputs.shard-evidence-roots-json || '[]' }}
|
|
131
|
+
release-blocker-priority-json: ${{ github.event_name == 'repository_dispatch' && toJSON(github.event.client_payload.candidate.releaseBlockerPriority) || inputs.release-blocker-priority-json || '' }}
|
|
132
|
+
native-proof-json: ${{ inputs.native-proof-json || '' }}
|
|
133
|
+
native-command: ${{ github.event.client_payload.candidate.nativeCommandContract.command || inputs.native-command || '' }}
|
|
134
|
+
native-command-root: ${{ github.event.client_payload.candidate.nativeCommandContract.commandRoot || inputs.native-command-root || '' }}
|
|
135
|
+
native-heartbeat-seconds: ${{ inputs.native-heartbeat-seconds || 300 }}
|
|
136
|
+
delivery-class: ${{ github.event.client_payload.candidate.deliveryClass || inputs.delivery-class || 'native-proof-required' }}
|
|
137
|
+
delivery-priority: ${{ github.event.client_payload.candidate.priority || inputs.delivery-priority || 'ordinary' }}
|
|
138
|
+
landing-mode: queue
|
|
139
|
+
dry-run: false
|
|
140
|
+
secrets:
|
|
141
|
+
github-token: ${{ secrets.BUILDCHAIN_PROMOTION_TOKEN }}
|