@kungfu-tech/buildchain 4.0.2-alpha.34 → 4.0.2-alpha.35

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.
Files changed (91) hide show
  1. package/AGENTS.md +9 -0
  2. package/CONTRIBUTING.md +24 -0
  3. package/README.md +2 -2
  4. package/actions/promote-buildchain-ref/README.md +1 -1
  5. package/architecture/agent-change-map.md +6 -4
  6. package/architecture/internal-capabilities.json +4 -4
  7. package/architecture/maintainability-debt.json +13 -11
  8. package/architecture/maintainability-policy.json +4 -4
  9. package/architecture/release-tail-contract-inventory.json +6 -6
  10. package/architecture/v4-delivery-authority-parity.json +2 -2
  11. package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.json +1 -1
  12. package/architecture/v4-floating-consumer-policy.json +1 -1
  13. package/architecture/v4-next-development-parity.json +4 -4
  14. package/architecture/v4-platform-stage-checkpoints.json +1 -1
  15. package/architecture/v4-publication-facade-patches.json +53 -0
  16. package/architecture/v4-release-topology.json +46 -29
  17. package/architecture/v4-rust-wasm-production-authority.json +1 -0
  18. package/architecture/v4-stage-capsule-qualification.json +1 -1
  19. package/architecture/v4-universal-workflow-bootstrap.json +1 -1
  20. package/architecture/v4-universal-workflow-fault-campaign.json +1 -1
  21. package/architecture/v4-universal-workflow-train-admission.json +4 -4
  22. package/architecture/workflow-taxonomy.json +1437 -0
  23. package/contracts/buildchain-v2-residuals-v1.json +64 -1
  24. package/contracts/fixtures/v4-tail-reseal-v1/valid.json +1 -1
  25. package/contracts/v4-canonical-contracts-v1.schema.json +1 -0
  26. package/dist/site/buildchain-contract.json +20 -20
  27. package/dist/site/buildchain-site.json +122 -56
  28. package/dist/site/capability-registry.json +4 -4
  29. package/dist/site/controller-registry.json +5 -4
  30. package/dist/site/kfd-claims.json +2617 -964
  31. package/dist/site/kfd-upstream-aggregate.json +1 -1
  32. package/dist/site/manual-registry.json +10 -10
  33. package/dist/site/node-api-registry.json +26 -21
  34. package/dist/site/page-registry.json +107 -41
  35. package/dist/site/public-surface-audit.json +3196 -1128
  36. package/dist/site/publication-authority-registry.json +1179 -417
  37. package/dist/site/publication-registry.json +4 -4
  38. package/dist/site/site-manifest.json +14 -14
  39. package/dist/site/workflow-registry.json +5484 -1924
  40. package/docs/MAP.md +1 -0
  41. package/docs/auditable-demo.md +1 -1
  42. package/docs/cli.md +3 -3
  43. package/docs/dev-delivery-warrant.md +1 -1
  44. package/docs/engineering-housekeeper.md +3 -3
  45. package/docs/next-development-transition.md +1 -1
  46. package/docs/node-api-reference.md +30 -30
  47. package/docs/publication-authority.md +2 -2
  48. package/docs/release-candidate.md +3 -3
  49. package/docs/release-flow.md +67 -19
  50. package/docs/release-governance.md +8 -8
  51. package/docs/v4-adopter-delivery.md +1 -1
  52. package/docs/v4-production-release.md +45 -8
  53. package/docs/v4-stage-capsule.md +1 -1
  54. package/docs/workflow-catalog.md +151 -0
  55. package/package.json +8 -6
  56. package/packages/core/buildchain-contract.js +1 -1
  57. package/packages/core/buildchain-kfd-claims.js +2 -2
  58. package/packages/core/buildchain-publication-authority.js +40 -25
  59. package/packages/core/buildchain-v4-domain.wasm +0 -0
  60. package/packages/core/controller-evidence.js +4 -1
  61. package/packages/core/github-governance-authority.js +4 -4
  62. package/packages/core/next-development-projection.js +1 -1
  63. package/packages/core/release-line-dry-run.js +1 -1
  64. package/packages/core/v4-canonical-contracts.js +1 -0
  65. package/packages/core/v4-domain-wasm-artifact.js +2 -2
  66. package/packages/core/v4-floating-consumer-evidence.js +1 -1
  67. package/packages/core/v4-floating-consumer-policy.js +1 -1
  68. package/scripts/binary-publication-evidence.mjs +135 -0
  69. package/scripts/check-ci-lane-change-budget.mjs +4 -1
  70. package/scripts/check-core-mechanism-inventory.mjs +4 -3
  71. package/scripts/check-inventory.mjs +22 -22
  72. package/scripts/check-v4-floating-consumer-policy-contract.mjs +1 -1
  73. package/scripts/check-v4-public-dogfood-contract.mjs +18 -5
  74. package/scripts/check-v4-release-topology.mjs +5 -2
  75. package/scripts/check-v4-runtime-semantic-closure.mjs +4 -1
  76. package/scripts/check-v4-universal-workflow-bootstrap.mjs +5 -9
  77. package/scripts/check-workflow-taxonomy.mjs +6 -0
  78. package/scripts/generate-channel-build-workflow.mjs +2 -1
  79. package/scripts/generate-channel-promotion-workflow.mjs +4 -3
  80. package/scripts/generate-site-bundle.mjs +11 -11
  81. package/scripts/generate-v4-universal-workflow-facades.mjs +24 -6
  82. package/scripts/generate-workflow-taxonomy.mjs +25 -0
  83. package/scripts/maintainability-metrics.mjs +16 -5
  84. package/scripts/release-asset-client.mjs +90 -0
  85. package/scripts/release-candidate-resolver.mjs +1 -1
  86. package/scripts/source-verification-evidence.mjs +344 -0
  87. package/scripts/stable-candidate-qualification.mjs +1 -1
  88. package/scripts/v4-publication-settlement.mjs +207 -0
  89. package/scripts/v4-universal-workflow-self-dogfood.mjs +1 -1
  90. package/scripts/verify-version-state-delta.mjs +173 -0
  91. package/scripts/workflow-taxonomy.mjs +468 -0
@@ -21,12 +21,12 @@
21
21
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
22
22
  "path": "dist/site/public-surface-audit.json",
23
23
  "status": "passed",
24
- "sha256": "8a6988a8ae8b0970ab821790ab3629842a966a970cae4c5d6828a10a8c61a7e5",
24
+ "sha256": "b204ab8cbca8d112938c12e6541faa85256f1a85671574ff3fd8907b11de7dc6",
25
25
  "summary": {
26
26
  "cliCommandCount": 117,
27
- "workflowCount": 74,
27
+ "workflowCount": 116,
28
28
  "actionCount": 8,
29
- "sitePageCount": 85,
29
+ "sitePageCount": 86,
30
30
  "docCommandRefCount": 1050,
31
31
  "failureCount": 0
32
32
  },
@@ -246,12 +246,12 @@
246
246
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
247
247
  "path": "dist/site/public-surface-audit.json",
248
248
  "status": "passed",
249
- "sha256": "8a6988a8ae8b0970ab821790ab3629842a966a970cae4c5d6828a10a8c61a7e5",
249
+ "sha256": "b204ab8cbca8d112938c12e6541faa85256f1a85671574ff3fd8907b11de7dc6",
250
250
  "summary": {
251
251
  "cliCommandCount": 117,
252
- "workflowCount": 74,
252
+ "workflowCount": 116,
253
253
  "actionCount": 8,
254
- "sitePageCount": 85,
254
+ "sitePageCount": 86,
255
255
  "docCommandRefCount": 1050,
256
256
  "failureCount": 0
257
257
  },
@@ -3902,6 +3902,286 @@
3902
3902
  ],
3903
3903
  "reverseAuditSource": ".github/workflows"
3904
3904
  },
3905
+ {
3906
+ "id": "workflow:.build-demo-adapter",
3907
+ "name": "workflow:.build-demo-adapter",
3908
+ "kind": "workflow",
3909
+ "sourcePath": ".github/workflows/.build-demo-adapter.yml",
3910
+ "evidencePath": ".github/workflows/.build-demo-adapter.yml",
3911
+ "availability": "shipped",
3912
+ "visibility": "public",
3913
+ "participantFacing": true,
3914
+ "public": true,
3915
+ "inputCount": 12,
3916
+ "inputs": [
3917
+ "adapter-arguments-json",
3918
+ "adapter-path",
3919
+ "artifact-retention-days",
3920
+ "buildchain-repository",
3921
+ "media-profile",
3922
+ "render-media",
3923
+ "renderer-image",
3924
+ "require-trusted-event",
3925
+ "source-artifact-digest",
3926
+ "source-artifact-name",
3927
+ "source-ref",
3928
+ "universal-request-json"
3929
+ ],
3930
+ "reverseAuditSource": ".github/workflows"
3931
+ },
3932
+ {
3933
+ "id": "workflow:.build-engine",
3934
+ "name": "workflow:.build-engine",
3935
+ "kind": "workflow",
3936
+ "sourcePath": ".github/workflows/.build-engine.yml",
3937
+ "evidencePath": ".github/workflows/.build-engine.yml",
3938
+ "availability": "shipped",
3939
+ "visibility": "public",
3940
+ "participantFacing": true,
3941
+ "public": true,
3942
+ "inputCount": 94,
3943
+ "inputs": [
3944
+ "artifact-compression-level",
3945
+ "artifact-finalization-command",
3946
+ "artifact-finalization-on-platform",
3947
+ "artifact-name",
3948
+ "artifact-name-template",
3949
+ "artifact-paths",
3950
+ "artifact-relay-s3-bucket",
3951
+ "artifact-relay-s3-download-role-arn",
3952
+ "artifact-relay-s3-oidc-audience",
3953
+ "artifact-relay-s3-prefix",
3954
+ "artifact-relay-s3-region",
3955
+ "artifact-relay-s3-role-arn",
3956
+ "artifact-relay-s3-upload-role-arn",
3957
+ "artifact-retention-days",
3958
+ "artifact-signing-request-upload-no-proxy",
3959
+ "artifact-transfer-mode",
3960
+ "aws-codebuild-project",
3961
+ "aws-ec2-macos-runner-label",
3962
+ "aws-ec2-windows-runner-label",
3963
+ "build-command",
3964
+ "buildchain-contract-compatibility-policy",
3965
+ "buildchain-contract-drift-issue-mode",
3966
+ "buildchain-contract-expected-channel",
3967
+ "buildchain-contract-expected-major",
3968
+ "buildchain-contract-lock-path",
3969
+ "buildchain-expected-channel",
3970
+ "buildchain-expected-major",
3971
+ "buildchain-ref",
3972
+ "buildchain-repository",
3973
+ "buildchain-visible-workflow",
3974
+ "cache-dependency-lock-root",
3975
+ "cache-policy-root",
3976
+ "cache-toolchain-root",
3977
+ "cargo-registry-index",
3978
+ "checkout-cache-fallback",
3979
+ "checkout-cache-fetch-attempts",
3980
+ "checkout-cache-github-timeout-seconds",
3981
+ "checkout-cache-mirror-url-template",
3982
+ "checkout-cache-mode",
3983
+ "checkout-cache-reference-repository-template",
3984
+ "checkout-cache-timeout-seconds",
3985
+ "checkout-history-mode",
3986
+ "compiler-cache-platforms-json",
3987
+ "compiler-cache-provider",
3988
+ "compiler-cache-required",
3989
+ "control-runner-json",
3990
+ "credential-island-caller-owned",
3991
+ "credential-island-environment",
3992
+ "credential-island-macos-app-path",
3993
+ "credential-island-macos-platform-id",
3994
+ "expected-artifacts-json",
3995
+ "fail-fast",
3996
+ "gate-profile-aggregate-json",
3997
+ "github-artifact-attestation-platform-id",
3998
+ "github-artifact-attestation-signer-sha",
3999
+ "github-artifact-attestation-subject-path",
4000
+ "install-command",
4001
+ "kfd-agent-hub",
4002
+ "lifecycle-timeout-minutes",
4003
+ "linux-container-image",
4004
+ "linux-container-preset",
4005
+ "node-version",
4006
+ "platforms-json",
4007
+ "pre-upload-transport-smoke-artifact-root",
4008
+ "pre-upload-transport-smoke-scenario-path",
4009
+ "process-sample-interval-ms",
4010
+ "process-summary-path",
4011
+ "publish-anchor-request-json",
4012
+ "publish-channel",
4013
+ "publish-refs-json",
4014
+ "publish-registry",
4015
+ "publish-source-ref",
4016
+ "release-candidate",
4017
+ "release-candidate-family-evidence-json",
4018
+ "requested-parallelism",
4019
+ "require-build",
4020
+ "require-install",
4021
+ "require-trusted-event",
4022
+ "require-verify",
4023
+ "runner-preset",
4024
+ "rust-toolchain",
4025
+ "rustup-dist-server",
4026
+ "rustup-update-root",
4027
+ "sample-process-tree",
4028
+ "self-hosted-offline-fallback",
4029
+ "setup-node",
4030
+ "setup-rust",
4031
+ "shifu-cache-profile-digest",
4032
+ "shifu-cache-profile-ref",
4033
+ "universal-request-json",
4034
+ "untrusted-policy",
4035
+ "verify-command",
4036
+ "verify-substage-evidence-path",
4037
+ "working-directory"
4038
+ ],
4039
+ "reverseAuditSource": ".github/workflows"
4040
+ },
4041
+ {
4042
+ "id": "workflow:.build-gate-profile",
4043
+ "name": "workflow:.build-gate-profile",
4044
+ "kind": "workflow",
4045
+ "sourcePath": ".github/workflows/.build-gate-profile.yml",
4046
+ "evidencePath": ".github/workflows/.build-gate-profile.yml",
4047
+ "availability": "shipped",
4048
+ "visibility": "public",
4049
+ "participantFacing": true,
4050
+ "public": true,
4051
+ "inputCount": 31,
4052
+ "inputs": [
4053
+ "artifact-name",
4054
+ "artifact-retention-days",
4055
+ "buildchain-ref",
4056
+ "buildchain-repository",
4057
+ "cargo-registry-index",
4058
+ "checkout-cache-fallback",
4059
+ "checkout-cache-fetch-attempts",
4060
+ "checkout-cache-github-timeout-seconds",
4061
+ "checkout-cache-mirror-url-template",
4062
+ "checkout-cache-mode",
4063
+ "checkout-cache-reference-repository-template",
4064
+ "checkout-cache-timeout-seconds",
4065
+ "gate-command-json",
4066
+ "gate-environment-json",
4067
+ "gate-plan-command-json",
4068
+ "gate-profile",
4069
+ "gate-registry",
4070
+ "include-advisory",
4071
+ "node-version",
4072
+ "platforms-json",
4073
+ "require-trusted-event",
4074
+ "runner-preset",
4075
+ "rust-toolchain",
4076
+ "rustup-dist-server",
4077
+ "rustup-update-root",
4078
+ "shifu-cache-profile-digest",
4079
+ "shifu-cache-profile-ref",
4080
+ "source-ref",
4081
+ "universal-request-json",
4082
+ "untrusted-policy",
4083
+ "working-directory"
4084
+ ],
4085
+ "reverseAuditSource": ".github/workflows"
4086
+ },
4087
+ {
4088
+ "id": "workflow:.build-release-verify-compat",
4089
+ "name": "workflow:.build-release-verify-compat",
4090
+ "kind": "workflow",
4091
+ "sourcePath": ".github/workflows/.build-release-verify-compat.yml",
4092
+ "evidencePath": ".github/workflows/.build-release-verify-compat.yml",
4093
+ "availability": "shipped",
4094
+ "visibility": "public",
4095
+ "participantFacing": true,
4096
+ "public": true,
4097
+ "inputCount": 42,
4098
+ "inputs": [
4099
+ "auto-approve-enabled",
4100
+ "aws-ci-region",
4101
+ "aws-user-region",
4102
+ "bucket-staging-ci",
4103
+ "bucket-staging-user",
4104
+ "build-container-enabled",
4105
+ "build-runner-linux",
4106
+ "build-runner-linux-labels",
4107
+ "build-runner-macos",
4108
+ "build-runner-macos-labels",
4109
+ "build-runner-windows",
4110
+ "build-runner-windows-labels",
4111
+ "build-timeout-minutes",
4112
+ "buildchain-ref",
4113
+ "buildchain-repository",
4114
+ "builder-container",
4115
+ "code-signing-macos",
4116
+ "code-signing-windows",
4117
+ "collaborator-automation-enabled",
4118
+ "enable-linux",
4119
+ "enable-macos",
4120
+ "enable-windows",
4121
+ "find-dependencies",
4122
+ "java-version",
4123
+ "manager",
4124
+ "max-build-attempts",
4125
+ "max-preview-links",
4126
+ "node-version",
4127
+ "pipenv-version",
4128
+ "poetry-version",
4129
+ "prebuild",
4130
+ "preview-files",
4131
+ "publish-aws-ci",
4132
+ "publish-aws-user",
4133
+ "publish-github-npm",
4134
+ "publish-versioning",
4135
+ "python-version",
4136
+ "setup-env-timeout-minutes",
4137
+ "setup-python-enabled",
4138
+ "universal-request-json",
4139
+ "use-pipenv",
4140
+ "use-poetry"
4141
+ ],
4142
+ "reverseAuditSource": ".github/workflows"
4143
+ },
4144
+ {
4145
+ "id": "workflow:.build-sam-verify-compat",
4146
+ "name": "workflow:.build-sam-verify-compat",
4147
+ "kind": "workflow",
4148
+ "sourcePath": ".github/workflows/.build-sam-verify-compat.yml",
4149
+ "evidencePath": ".github/workflows/.build-sam-verify-compat.yml",
4150
+ "availability": "shipped",
4151
+ "visibility": "public",
4152
+ "participantFacing": true,
4153
+ "public": true,
4154
+ "inputCount": 5,
4155
+ "inputs": [
4156
+ "aws-region",
4157
+ "aws-role",
4158
+ "aws-root",
4159
+ "manager",
4160
+ "universal-request-json"
4161
+ ],
4162
+ "reverseAuditSource": ".github/workflows"
4163
+ },
4164
+ {
4165
+ "id": "workflow:.build-wheel-verify-compat",
4166
+ "name": "workflow:.build-wheel-verify-compat",
4167
+ "kind": "workflow",
4168
+ "sourcePath": ".github/workflows/.build-wheel-verify-compat.yml",
4169
+ "evidencePath": ".github/workflows/.build-wheel-verify-compat.yml",
4170
+ "availability": "shipped",
4171
+ "visibility": "public",
4172
+ "participantFacing": true,
4173
+ "public": true,
4174
+ "inputCount": 6,
4175
+ "inputs": [
4176
+ "aws-user-region",
4177
+ "bucket-release",
4178
+ "max-preview-links",
4179
+ "node-version",
4180
+ "preview-files",
4181
+ "universal-request-json"
4182
+ ],
4183
+ "reverseAuditSource": ".github/workflows"
4184
+ },
3905
4185
  {
3906
4186
  "id": "workflow:.build",
3907
4187
  "name": "workflow:.build",
@@ -4101,6 +4381,26 @@
4101
4381
  ],
4102
4382
  "reverseAuditSource": ".github/workflows"
4103
4383
  },
4384
+ {
4385
+ "id": "workflow:.ops-git-sync",
4386
+ "name": "workflow:.ops-git-sync",
4387
+ "kind": "workflow",
4388
+ "sourcePath": ".github/workflows/.ops-git-sync.yml",
4389
+ "evidencePath": ".github/workflows/.ops-git-sync.yml",
4390
+ "availability": "shipped",
4391
+ "visibility": "public",
4392
+ "participantFacing": true,
4393
+ "public": true,
4394
+ "inputCount": 5,
4395
+ "inputs": [
4396
+ "force",
4397
+ "remote-host",
4398
+ "remote-path",
4399
+ "remote-repo",
4400
+ "universal-request-json"
4401
+ ],
4402
+ "reverseAuditSource": ".github/workflows"
4403
+ },
4104
4404
  {
4105
4405
  "id": "workflow:.publication-authority",
4106
4406
  "name": "workflow:.publication-authority",
@@ -4154,6 +4454,90 @@
4154
4454
  ],
4155
4455
  "reverseAuditSource": ".github/workflows"
4156
4456
  },
4457
+ {
4458
+ "id": "workflow:.release-authority",
4459
+ "name": "workflow:.release-authority",
4460
+ "kind": "workflow",
4461
+ "sourcePath": ".github/workflows/.release-authority.yml",
4462
+ "evidencePath": ".github/workflows/.release-authority.yml",
4463
+ "availability": "shipped",
4464
+ "visibility": "public",
4465
+ "participantFacing": true,
4466
+ "public": true,
4467
+ "inputCount": 38,
4468
+ "inputs": [
4469
+ "admission-json",
4470
+ "authority-workflow-path",
4471
+ "auto-admission",
4472
+ "auto-admission-kind",
4473
+ "auto-no-gate",
4474
+ "buildchain-ref",
4475
+ "buildchain-repository",
4476
+ "consumer-gate-command",
4477
+ "consumer-gate-controller-sha",
4478
+ "consumer-gate-evidence-source-sha",
4479
+ "consumer-gate-evidence-source-tree",
4480
+ "consumer-predicate-digest",
4481
+ "consumer-predicate-id",
4482
+ "consumer-qualification-required",
4483
+ "control-plane-audit-json",
4484
+ "dry-run",
4485
+ "evidence-controller-artifact",
4486
+ "evidence-manifest-pattern",
4487
+ "evidence-passport-artifact",
4488
+ "evidence-payload-pattern",
4489
+ "evidence-publication-artifact",
4490
+ "evidence-repository",
4491
+ "evidence-run-id",
4492
+ "evidence-summary-artifact",
4493
+ "expected-json",
4494
+ "gate-aggregate-json",
4495
+ "github-governance-receipt-json",
4496
+ "package-name",
4497
+ "product",
4498
+ "publication-target",
4499
+ "publication-version",
4500
+ "publisher-workflow-path",
4501
+ "required-status-check",
4502
+ "runner-provenance-json",
4503
+ "source-sha",
4504
+ "target-ref",
4505
+ "universal-request-json",
4506
+ "used-nonces-json"
4507
+ ],
4508
+ "reverseAuditSource": ".github/workflows"
4509
+ },
4510
+ {
4511
+ "id": "workflow:.release-binary-assets",
4512
+ "name": "workflow:.release-binary-assets",
4513
+ "kind": "workflow",
4514
+ "sourcePath": ".github/workflows/.release-binary-assets.yml",
4515
+ "evidencePath": ".github/workflows/.release-binary-assets.yml",
4516
+ "availability": "shipped",
4517
+ "visibility": "public",
4518
+ "participantFacing": true,
4519
+ "public": true,
4520
+ "inputCount": 16,
4521
+ "inputs": [
4522
+ "auto-admission",
4523
+ "buildchain-ref",
4524
+ "buildchain-repository",
4525
+ "evidence-run-id",
4526
+ "github-governance-receipt-json",
4527
+ "publication-admission-json",
4528
+ "publication-control-plane-audit-json",
4529
+ "publication-expected-json",
4530
+ "publication-gate-aggregate-json",
4531
+ "publication-runner-provenance-json",
4532
+ "publication-used-nonces-json",
4533
+ "publication-version",
4534
+ "release-tag",
4535
+ "source-sha",
4536
+ "target-ref",
4537
+ "universal-request-json"
4538
+ ],
4539
+ "reverseAuditSource": ".github/workflows"
4540
+ },
4157
4541
  {
4158
4542
  "id": "workflow:.release-candidate-promote",
4159
4543
  "name": "workflow:.release-candidate-promote",
@@ -4292,88 +4676,27 @@
4292
4676
  "reverseAuditSource": ".github/workflows"
4293
4677
  },
4294
4678
  {
4295
- "id": "workflow:.release-verify",
4296
- "name": "workflow:.release-verify",
4297
- "kind": "workflow",
4298
- "sourcePath": ".github/workflows/.release-verify.yml",
4299
- "evidencePath": ".github/workflows/.release-verify.yml",
4300
- "availability": "shipped",
4301
- "visibility": "public",
4302
- "participantFacing": true,
4303
- "public": true,
4304
- "inputCount": 42,
4305
- "inputs": [
4306
- "auto-approve-enabled",
4307
- "aws-ci-region",
4308
- "aws-user-region",
4309
- "bucket-staging-ci",
4310
- "bucket-staging-user",
4311
- "build-container-enabled",
4312
- "build-runner-linux",
4313
- "build-runner-linux-labels",
4314
- "build-runner-macos",
4315
- "build-runner-macos-labels",
4316
- "build-runner-windows",
4317
- "build-runner-windows-labels",
4318
- "build-timeout-minutes",
4319
- "buildchain-ref",
4320
- "buildchain-repository",
4321
- "builder-container",
4322
- "code-signing-macos",
4323
- "code-signing-windows",
4324
- "collaborator-automation-enabled",
4325
- "enable-linux",
4326
- "enable-macos",
4327
- "enable-windows",
4328
- "find-dependencies",
4329
- "java-version",
4330
- "manager",
4331
- "max-build-attempts",
4332
- "max-preview-links",
4333
- "node-version",
4334
- "pipenv-version",
4335
- "poetry-version",
4336
- "prebuild",
4337
- "preview-files",
4338
- "publish-aws-ci",
4339
- "publish-aws-user",
4340
- "publish-github-npm",
4341
- "publish-versioning",
4342
- "python-version",
4343
- "setup-env-timeout-minutes",
4344
- "setup-python-enabled",
4345
- "universal-request-json",
4346
- "use-pipenv",
4347
- "use-poetry"
4348
- ],
4349
- "reverseAuditSource": ".github/workflows"
4350
- },
4351
- {
4352
- "id": "workflow:.sam-verify",
4353
- "name": "workflow:.sam-verify",
4679
+ "id": "workflow:.release-minor-bump-compat",
4680
+ "name": "workflow:.release-minor-bump-compat",
4354
4681
  "kind": "workflow",
4355
- "sourcePath": ".github/workflows/.sam-verify.yml",
4356
- "evidencePath": ".github/workflows/.sam-verify.yml",
4682
+ "sourcePath": ".github/workflows/.release-minor-bump-compat.yml",
4683
+ "evidencePath": ".github/workflows/.release-minor-bump-compat.yml",
4357
4684
  "availability": "shipped",
4358
4685
  "visibility": "public",
4359
4686
  "participantFacing": true,
4360
4687
  "public": true,
4361
- "inputCount": 5,
4688
+ "inputCount": 1,
4362
4689
  "inputs": [
4363
- "aws-region",
4364
- "aws-role",
4365
- "aws-root",
4366
- "manager",
4367
4690
  "universal-request-json"
4368
4691
  ],
4369
4692
  "reverseAuditSource": ".github/workflows"
4370
4693
  },
4371
4694
  {
4372
- "id": "workflow:.sync-release-page",
4373
- "name": "workflow:.sync-release-page",
4695
+ "id": "workflow:.release-page-sync-retired",
4696
+ "name": "workflow:.release-page-sync-retired",
4374
4697
  "kind": "workflow",
4375
- "sourcePath": ".github/workflows/.sync-release-page.yml",
4376
- "evidencePath": ".github/workflows/.sync-release-page.yml",
4698
+ "sourcePath": ".github/workflows/.release-page-sync-retired.yml",
4699
+ "evidencePath": ".github/workflows/.release-page-sync-retired.yml",
4377
4700
  "availability": "shipped",
4378
4701
  "visibility": "public",
4379
4702
  "participantFacing": true,
@@ -4398,197 +4721,354 @@
4398
4721
  "reverseAuditSource": ".github/workflows"
4399
4722
  },
4400
4723
  {
4401
- "id": "workflow:.sync-remote-git",
4402
- "name": "workflow:.sync-remote-git",
4403
- "kind": "workflow",
4404
- "sourcePath": ".github/workflows/.sync-remote-git.yml",
4405
- "evidencePath": ".github/workflows/.sync-remote-git.yml",
4406
- "availability": "shipped",
4407
- "visibility": "public",
4408
- "participantFacing": true,
4409
- "public": true,
4410
- "inputCount": 5,
4411
- "inputs": [
4412
- "force",
4413
- "remote-host",
4414
- "remote-path",
4415
- "remote-repo",
4416
- "universal-request-json"
4417
- ],
4418
- "reverseAuditSource": ".github/workflows"
4419
- },
4420
- {
4421
- "id": "workflow:.web-surface",
4422
- "name": "workflow:.web-surface",
4724
+ "id": "workflow:.release-promote",
4725
+ "name": "workflow:.release-promote",
4423
4726
  "kind": "workflow",
4424
- "sourcePath": ".github/workflows/.web-surface.yml",
4425
- "evidencePath": ".github/workflows/.web-surface.yml",
4727
+ "sourcePath": ".github/workflows/.release-promote.yml",
4728
+ "evidencePath": ".github/workflows/.release-promote.yml",
4426
4729
  "availability": "shipped",
4427
4730
  "visibility": "public",
4428
4731
  "participantFacing": true,
4429
4732
  "public": true,
4430
- "inputCount": 44,
4733
+ "inputCount": 122,
4431
4734
  "inputs": [
4432
- "artifact-path",
4433
- "aws-region",
4434
- "build-command",
4735
+ "allow-repository",
4736
+ "artifact-name",
4737
+ "artifact-patterns",
4738
+ "branch-protection-bypass-apps",
4739
+ "branch-protection-bypass-teams",
4740
+ "branch-protection-bypass-users",
4741
+ "buildchain-alpha-contract-lock-path",
4435
4742
  "buildchain-contract-compatibility-policy",
4436
4743
  "buildchain-contract-drift-issue-mode",
4437
- "buildchain-contract-expected-channel",
4438
- "buildchain-contract-expected-major",
4439
4744
  "buildchain-contract-lock-path",
4745
+ "buildchain-expected-channel",
4746
+ "buildchain-expected-major",
4440
4747
  "buildchain-ref",
4441
4748
  "buildchain-repository",
4442
- "fail-on-release-pr-error",
4749
+ "buildchain-stable-contract-lock-path",
4750
+ "channel",
4751
+ "declarative-release-tail",
4752
+ "dry-run",
4753
+ "github-artifact-attestation-environment",
4754
+ "github-artifact-attestation-policy-json",
4755
+ "github-artifact-attestation-retention-days",
4443
4756
  "github-governance-receipt-json",
4444
- "node-version",
4445
- "preview-apply",
4446
- "preview-aws-role-arn",
4447
- "preview-cleanup-apply",
4448
- "preview-comment",
4449
- "preview-environment",
4450
- "production-apply",
4451
- "production-approved",
4452
- "production-aws-role-arn",
4453
- "production-environment",
4454
- "production-release-app-client-id",
4455
- "production-release-app-id",
4456
- "production-release-branch-channel",
4457
- "production-release-head-prefix",
4458
- "production-release-label",
4459
- "production-release-on-main",
4460
- "production-release-pr-mode",
4461
- "production-release-pr-token",
4462
- "production-source-sha",
4757
+ "github-release",
4758
+ "github-release-notes",
4759
+ "github-release-payload-patterns",
4760
+ "github-release-title",
4761
+ "package-manager",
4762
+ "promotion-contract-lock-digest",
4763
+ "promotion-contract-lock-path",
4764
+ "promotion-override-used",
4765
+ "promotion-publication-channel",
4766
+ "promotion-router-ref",
4767
+ "promotion-router-sha",
4768
+ "promotion-runtime-authorization-json",
4769
+ "promotion-runtime-authorization-root",
4770
+ "promotion-runtime-ref",
4771
+ "promotion-runtime-sha",
4772
+ "promotion-shell-ref",
4773
+ "promotion-shell-sha",
4774
+ "promotion-target-ref",
4775
+ "provider-failure-after-capability",
4463
4776
  "publication-admission-json",
4464
- "publication-control-plane-audit-json",
4465
- "publication-expected-json",
4466
- "publication-gate-aggregate-json",
4467
- "publication-runner-provenance-json",
4468
- "publication-used-nonces-json",
4469
- "release-feedback-actor-privacy",
4470
- "staging-apply",
4471
- "staging-aws-role-arn",
4472
- "staging-environment",
4473
- "universal-request-json",
4474
- "verify-command",
4475
- "working-directory"
4777
+ "publication-authority-workflow-path",
4778
+ "publication-auto-admission",
4779
+ "publication-auto-no-gate",
4780
+ "publication-commit-command",
4781
+ "publication-commit-evidence-path",
4782
+ "publication-consumer-predicate-id",
4783
+ "publication-consumer-qualification-command",
4784
+ "publication-consumer-qualification-controller-sha",
4785
+ "publication-control-plane-audit-json",
4786
+ "publication-expected-json",
4787
+ "publication-gate-aggregate-json",
4788
+ "publication-gate-command",
4789
+ "publication-gate-controller-sha",
4790
+ "publication-package-name",
4791
+ "publication-product",
4792
+ "publication-publisher-workflow-path",
4793
+ "publication-runner-provenance-json",
4794
+ "publication-target",
4795
+ "publication-used-nonces-json",
4796
+ "publication-used-qualification-nonces-json",
4797
+ "publish-artifact-kind",
4798
+ "publish-command",
4799
+ "publish-dist-tag",
4800
+ "publish-mode",
4801
+ "publish-package-main",
4802
+ "publish-package-set-order",
4803
+ "publish-rematerialize-on-resume",
4804
+ "publish-required-artifacts-json",
4805
+ "publish-target",
4806
+ "publish-transaction-override",
4807
+ "release-activation-command",
4808
+ "release-activation-receipt-set-path",
4809
+ "release-candidate-family-assignment-id",
4810
+ "release-candidate-family-evidence-required",
4811
+ "release-candidate-family-evidence-root",
4812
+ "release-candidate-family-initiative-id",
4813
+ "release-candidate-wait-seconds",
4814
+ "release-candidate-workflow-file",
4815
+ "release-candidate-workflow-name",
4816
+ "release-passport",
4817
+ "release-passport-adopter-delivery-json",
4818
+ "release-passport-attachment-command",
4819
+ "release-passport-buildchain-self-kfd",
4820
+ "release-passport-evidence-command",
4821
+ "release-passport-evidence-jsons",
4822
+ "release-passport-evidence-path",
4823
+ "release-passport-impact-json",
4824
+ "release-passport-invariant-passport-command",
4825
+ "release-passport-invariant-passport-jsons",
4826
+ "release-passport-kfd-1-witness-jsons",
4827
+ "release-passport-kfd-2-claim-jsons",
4828
+ "release-passport-kfd-3-artifact-verify-command",
4829
+ "release-passport-kfd-3-artifact-witness-jsons",
4830
+ "release-passport-kfd-3-prebuild-witness-jsons",
4831
+ "release-passport-kfd-adopter-manifest-gate-json",
4832
+ "release-passport-kfd-adopter-manifest-json",
4833
+ "release-passport-kfd-product-gate-jsons",
4834
+ "release-passport-kfd-support-matrix-json",
4835
+ "release-passport-output-dir",
4836
+ "release-passport-platform-manifest-paths",
4837
+ "release-passport-product-name",
4838
+ "release-passport-v4-runtime-resume-evidence-json",
4839
+ "release-propagation-config-path",
4840
+ "required-artifact-count",
4841
+ "required-status-check",
4842
+ "resume-buildchain-runtime-sha",
4843
+ "resume-candidate-repository",
4844
+ "resume-candidate-run-id",
4845
+ "resume-expected-candidate-root",
4846
+ "resume-expected-candidate-runtime-sha",
4847
+ "resume-expected-source-tree",
4848
+ "resume-expected-workflow-file",
4849
+ "resume-expected-workflow-name",
4850
+ "resume-transaction-id",
4851
+ "runner-preset",
4852
+ "standalone-binary-distribution",
4853
+ "target-ref",
4854
+ "target-sha",
4855
+ "trusted-publishing",
4856
+ "universal-request-json"
4476
4857
  ],
4477
4858
  "reverseAuditSource": ".github/workflows"
4478
4859
  },
4479
4860
  {
4480
- "id": "workflow:.wheel-verify",
4481
- "name": "workflow:.wheel-verify",
4861
+ "id": "workflow:.release-verify",
4862
+ "name": "workflow:.release-verify",
4482
4863
  "kind": "workflow",
4483
- "sourcePath": ".github/workflows/.wheel-verify.yml",
4484
- "evidencePath": ".github/workflows/.wheel-verify.yml",
4864
+ "sourcePath": ".github/workflows/.release-verify.yml",
4865
+ "evidencePath": ".github/workflows/.release-verify.yml",
4485
4866
  "availability": "shipped",
4486
4867
  "visibility": "public",
4487
4868
  "participantFacing": true,
4488
4869
  "public": true,
4489
- "inputCount": 6,
4870
+ "inputCount": 42,
4490
4871
  "inputs": [
4872
+ "auto-approve-enabled",
4873
+ "aws-ci-region",
4491
4874
  "aws-user-region",
4492
- "bucket-release",
4875
+ "bucket-staging-ci",
4876
+ "bucket-staging-user",
4877
+ "build-container-enabled",
4878
+ "build-runner-linux",
4879
+ "build-runner-linux-labels",
4880
+ "build-runner-macos",
4881
+ "build-runner-macos-labels",
4882
+ "build-runner-windows",
4883
+ "build-runner-windows-labels",
4884
+ "build-timeout-minutes",
4885
+ "buildchain-ref",
4886
+ "buildchain-repository",
4887
+ "builder-container",
4888
+ "code-signing-macos",
4889
+ "code-signing-windows",
4890
+ "collaborator-automation-enabled",
4891
+ "enable-linux",
4892
+ "enable-macos",
4893
+ "enable-windows",
4894
+ "find-dependencies",
4895
+ "java-version",
4896
+ "manager",
4897
+ "max-build-attempts",
4493
4898
  "max-preview-links",
4494
4899
  "node-version",
4900
+ "pipenv-version",
4901
+ "poetry-version",
4902
+ "prebuild",
4495
4903
  "preview-files",
4496
- "universal-request-json"
4904
+ "publish-aws-ci",
4905
+ "publish-aws-user",
4906
+ "publish-github-npm",
4907
+ "publish-versioning",
4908
+ "python-version",
4909
+ "setup-env-timeout-minutes",
4910
+ "setup-python-enabled",
4911
+ "universal-request-json",
4912
+ "use-pipenv",
4913
+ "use-poetry"
4497
4914
  ],
4498
4915
  "reverseAuditSource": ".github/workflows"
4499
4916
  },
4500
4917
  {
4501
- "id": "workflow:artifact-signing-authority",
4502
- "name": "workflow:artifact-signing-authority",
4918
+ "id": "workflow:.sam-verify",
4919
+ "name": "workflow:.sam-verify",
4503
4920
  "kind": "workflow",
4504
- "sourcePath": ".github/workflows/artifact-signing-authority.yml",
4505
- "evidencePath": ".github/workflows/artifact-signing-authority.yml",
4921
+ "sourcePath": ".github/workflows/.sam-verify.yml",
4922
+ "evidencePath": ".github/workflows/.sam-verify.yml",
4506
4923
  "availability": "shipped",
4507
4924
  "visibility": "public",
4508
4925
  "participantFacing": true,
4509
4926
  "public": true,
4510
- "inputCount": 0,
4511
- "inputs": [],
4927
+ "inputCount": 5,
4928
+ "inputs": [
4929
+ "aws-region",
4930
+ "aws-role",
4931
+ "aws-root",
4932
+ "manager",
4933
+ "universal-request-json"
4934
+ ],
4512
4935
  "reverseAuditSource": ".github/workflows"
4513
4936
  },
4514
4937
  {
4515
- "id": "workflow:auditable-demo-media-profile-qualification",
4516
- "name": "workflow:auditable-demo-media-profile-qualification",
4938
+ "id": "workflow:.sync-release-page",
4939
+ "name": "workflow:.sync-release-page",
4517
4940
  "kind": "workflow",
4518
- "sourcePath": ".github/workflows/auditable-demo-media-profile-qualification.yml",
4519
- "evidencePath": ".github/workflows/auditable-demo-media-profile-qualification.yml",
4941
+ "sourcePath": ".github/workflows/.sync-release-page.yml",
4942
+ "evidencePath": ".github/workflows/.sync-release-page.yml",
4520
4943
  "availability": "shipped",
4521
4944
  "visibility": "public",
4522
4945
  "participantFacing": true,
4523
4946
  "public": true,
4524
- "inputCount": 0,
4525
- "inputs": [],
4947
+ "inputCount": 14,
4948
+ "inputs": [
4949
+ "aws-region",
4950
+ "aws-role-arn",
4951
+ "base-id",
4952
+ "bucket-release",
4953
+ "cloudfront-id",
4954
+ "exclude",
4955
+ "lower-edge",
4956
+ "product",
4957
+ "product-name",
4958
+ "release-path",
4959
+ "release-url",
4960
+ "repo",
4961
+ "universal-request-json",
4962
+ "upper-edge"
4963
+ ],
4526
4964
  "reverseAuditSource": ".github/workflows"
4527
4965
  },
4528
4966
  {
4529
- "id": "workflow:auditable-demo",
4530
- "name": "workflow:auditable-demo",
4967
+ "id": "workflow:.sync-remote-git",
4968
+ "name": "workflow:.sync-remote-git",
4531
4969
  "kind": "workflow",
4532
- "sourcePath": ".github/workflows/auditable-demo.yml",
4533
- "evidencePath": ".github/workflows/auditable-demo.yml",
4970
+ "sourcePath": ".github/workflows/.sync-remote-git.yml",
4971
+ "evidencePath": ".github/workflows/.sync-remote-git.yml",
4534
4972
  "availability": "shipped",
4535
4973
  "visibility": "public",
4536
4974
  "participantFacing": true,
4537
4975
  "public": true,
4538
- "inputCount": 0,
4539
- "inputs": [],
4976
+ "inputCount": 5,
4977
+ "inputs": [
4978
+ "force",
4979
+ "remote-host",
4980
+ "remote-path",
4981
+ "remote-repo",
4982
+ "universal-request-json"
4983
+ ],
4540
4984
  "reverseAuditSource": ".github/workflows"
4541
4985
  },
4542
4986
  {
4543
- "id": "workflow:binary-distribution",
4544
- "name": "workflow:binary-distribution",
4987
+ "id": "workflow:.web-surface",
4988
+ "name": "workflow:.web-surface",
4545
4989
  "kind": "workflow",
4546
- "sourcePath": ".github/workflows/binary-distribution.yml",
4547
- "evidencePath": ".github/workflows/binary-distribution.yml",
4990
+ "sourcePath": ".github/workflows/.web-surface.yml",
4991
+ "evidencePath": ".github/workflows/.web-surface.yml",
4548
4992
  "availability": "shipped",
4549
4993
  "visibility": "public",
4550
4994
  "participantFacing": true,
4551
4995
  "public": true,
4552
- "inputCount": 0,
4553
- "inputs": [],
4996
+ "inputCount": 44,
4997
+ "inputs": [
4998
+ "artifact-path",
4999
+ "aws-region",
5000
+ "build-command",
5001
+ "buildchain-contract-compatibility-policy",
5002
+ "buildchain-contract-drift-issue-mode",
5003
+ "buildchain-contract-expected-channel",
5004
+ "buildchain-contract-expected-major",
5005
+ "buildchain-contract-lock-path",
5006
+ "buildchain-ref",
5007
+ "buildchain-repository",
5008
+ "fail-on-release-pr-error",
5009
+ "github-governance-receipt-json",
5010
+ "node-version",
5011
+ "preview-apply",
5012
+ "preview-aws-role-arn",
5013
+ "preview-cleanup-apply",
5014
+ "preview-comment",
5015
+ "preview-environment",
5016
+ "production-apply",
5017
+ "production-approved",
5018
+ "production-aws-role-arn",
5019
+ "production-environment",
5020
+ "production-release-app-client-id",
5021
+ "production-release-app-id",
5022
+ "production-release-branch-channel",
5023
+ "production-release-head-prefix",
5024
+ "production-release-label",
5025
+ "production-release-on-main",
5026
+ "production-release-pr-mode",
5027
+ "production-release-pr-token",
5028
+ "production-source-sha",
5029
+ "publication-admission-json",
5030
+ "publication-control-plane-audit-json",
5031
+ "publication-expected-json",
5032
+ "publication-gate-aggregate-json",
5033
+ "publication-runner-provenance-json",
5034
+ "publication-used-nonces-json",
5035
+ "release-feedback-actor-privacy",
5036
+ "staging-apply",
5037
+ "staging-aws-role-arn",
5038
+ "staging-environment",
5039
+ "universal-request-json",
5040
+ "verify-command",
5041
+ "working-directory"
5042
+ ],
4554
5043
  "reverseAuditSource": ".github/workflows"
4555
5044
  },
4556
5045
  {
4557
- "id": "workflow:binary-release-assets",
4558
- "name": "workflow:binary-release-assets",
5046
+ "id": "workflow:.wheel-verify",
5047
+ "name": "workflow:.wheel-verify",
4559
5048
  "kind": "workflow",
4560
- "sourcePath": ".github/workflows/binary-release-assets.yml",
4561
- "evidencePath": ".github/workflows/binary-release-assets.yml",
5049
+ "sourcePath": ".github/workflows/.wheel-verify.yml",
5050
+ "evidencePath": ".github/workflows/.wheel-verify.yml",
4562
5051
  "availability": "shipped",
4563
5052
  "visibility": "public",
4564
5053
  "participantFacing": true,
4565
5054
  "public": true,
4566
- "inputCount": 0,
4567
- "inputs": [],
4568
- "reverseAuditSource": ".github/workflows"
4569
- },
4570
- {
4571
- "id": "workflow:bootstrap",
4572
- "name": "workflow:bootstrap",
4573
- "kind": "workflow",
4574
- "sourcePath": ".github/workflows/bootstrap.yml",
4575
- "evidencePath": ".github/workflows/bootstrap.yml",
4576
- "availability": "shipped",
4577
- "visibility": "public",
4578
- "participantFacing": true,
4579
- "public": true,
4580
- "inputCount": 1,
5055
+ "inputCount": 6,
4581
5056
  "inputs": [
4582
- "request-json"
5057
+ "aws-user-region",
5058
+ "bucket-release",
5059
+ "max-preview-links",
5060
+ "node-version",
5061
+ "preview-files",
5062
+ "universal-request-json"
4583
5063
  ],
4584
5064
  "reverseAuditSource": ".github/workflows"
4585
5065
  },
4586
5066
  {
4587
- "id": "workflow:build-surface-fixture",
4588
- "name": "workflow:build-surface-fixture",
5067
+ "id": "workflow:artifact-signing-authority",
5068
+ "name": "workflow:artifact-signing-authority",
4589
5069
  "kind": "workflow",
4590
- "sourcePath": ".github/workflows/build-surface-fixture.yml",
4591
- "evidencePath": ".github/workflows/build-surface-fixture.yml",
5070
+ "sourcePath": ".github/workflows/artifact-signing-authority.yml",
5071
+ "evidencePath": ".github/workflows/artifact-signing-authority.yml",
4592
5072
  "availability": "shipped",
4593
5073
  "visibility": "public",
4594
5074
  "participantFacing": true,
@@ -4597,6 +5077,22 @@
4597
5077
  "inputs": [],
4598
5078
  "reverseAuditSource": ".github/workflows"
4599
5079
  },
5080
+ {
5081
+ "id": "workflow:bootstrap",
5082
+ "name": "workflow:bootstrap",
5083
+ "kind": "workflow",
5084
+ "sourcePath": ".github/workflows/bootstrap.yml",
5085
+ "evidencePath": ".github/workflows/bootstrap.yml",
5086
+ "availability": "shipped",
5087
+ "visibility": "public",
5088
+ "participantFacing": true,
5089
+ "public": true,
5090
+ "inputCount": 1,
5091
+ "inputs": [
5092
+ "request-json"
5093
+ ],
5094
+ "reverseAuditSource": ".github/workflows"
5095
+ },
4600
5096
  {
4601
5097
  "id": "workflow:build",
4602
5098
  "name": "workflow:build",
@@ -4710,127 +5206,1818 @@
4710
5206
  "reverseAuditSource": ".github/workflows"
4711
5207
  },
4712
5208
  {
4713
- "id": "workflow:buildchain-alpha-self-dogfood",
4714
- "name": "workflow:buildchain-alpha-self-dogfood",
5209
+ "id": "workflow:buildchain-patrol",
5210
+ "name": "workflow:buildchain-patrol",
4715
5211
  "kind": "workflow",
4716
- "sourcePath": ".github/workflows/buildchain-alpha-self-dogfood.yml",
4717
- "evidencePath": ".github/workflows/buildchain-alpha-self-dogfood.yml",
5212
+ "sourcePath": ".github/workflows/buildchain-patrol.yml",
5213
+ "evidencePath": ".github/workflows/buildchain-patrol.yml",
4718
5214
  "availability": "shipped",
4719
5215
  "visibility": "public",
4720
5216
  "participantFacing": true,
4721
5217
  "public": true,
4722
- "inputCount": 0,
4723
- "inputs": [],
5218
+ "inputCount": 17,
5219
+ "inputs": [
5220
+ "allowed-head-prefixes",
5221
+ "block-labels",
5222
+ "buildchain-ref",
5223
+ "buildchain-repository",
5224
+ "cadence",
5225
+ "capabilities",
5226
+ "dry-run",
5227
+ "landing-mode",
5228
+ "max-actions",
5229
+ "merge-method",
5230
+ "mode",
5231
+ "ready-label",
5232
+ "require-approval",
5233
+ "required-status-checks",
5234
+ "same-repository-only",
5235
+ "target-branch",
5236
+ "universal-request-json"
5237
+ ],
4724
5238
  "reverseAuditSource": ".github/workflows"
4725
5239
  },
4726
5240
  {
4727
- "id": "workflow:buildchain-candidate-recovery-dogfood-failure",
4728
- "name": "workflow:buildchain-candidate-recovery-dogfood-failure",
5241
+ "id": "workflow:check",
5242
+ "name": "workflow:check",
4729
5243
  "kind": "workflow",
4730
- "sourcePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
4731
- "evidencePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
5244
+ "sourcePath": ".github/workflows/check.yml",
5245
+ "evidencePath": ".github/workflows/check.yml",
4732
5246
  "availability": "shipped",
4733
5247
  "visibility": "public",
4734
5248
  "participantFacing": true,
4735
5249
  "public": true,
4736
- "inputCount": 0,
4737
- "inputs": [],
5250
+ "inputCount": 13,
5251
+ "inputs": [
5252
+ "buildchain-ref",
5253
+ "buildchain-repository",
5254
+ "mode",
5255
+ "node-version",
5256
+ "require-version-state",
5257
+ "source-proof-closure-paths-json",
5258
+ "source-proof-dependency-paths-json",
5259
+ "source-proof-policy-paths-json",
5260
+ "source-proof-required-contexts-json",
5261
+ "source-proof-reuse",
5262
+ "universal-request-json",
5263
+ "upload-artifacts",
5264
+ "working-directory"
5265
+ ],
4738
5266
  "reverseAuditSource": ".github/workflows"
4739
5267
  },
4740
5268
  {
4741
- "id": "workflow:buildchain-dev-delivery",
4742
- "name": "workflow:buildchain-dev-delivery",
5269
+ "id": "workflow:dev-alpha-candidate-patrol",
5270
+ "name": "workflow:dev-alpha-candidate-patrol",
4743
5271
  "kind": "workflow",
4744
- "sourcePath": ".github/workflows/buildchain-dev-delivery.yml",
4745
- "evidencePath": ".github/workflows/buildchain-dev-delivery.yml",
5272
+ "sourcePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
5273
+ "evidencePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
4746
5274
  "availability": "shipped",
4747
5275
  "visibility": "public",
4748
5276
  "participantFacing": true,
4749
5277
  "public": true,
4750
- "inputCount": 0,
4751
- "inputs": [],
5278
+ "inputCount": 16,
5279
+ "inputs": [
5280
+ "alpha-workflow-path",
5281
+ "auto-merge",
5282
+ "buildchain-ref",
5283
+ "buildchain-repository",
5284
+ "create-pull-request",
5285
+ "dev-workflow-path",
5286
+ "dry-run",
5287
+ "max-age-seconds",
5288
+ "merge-method",
5289
+ "pull-request-body-prefix",
5290
+ "pull-request-body-prefix-renderer",
5291
+ "reactivation-authorized",
5292
+ "settlement-authorized",
5293
+ "source-branch",
5294
+ "target-branch",
5295
+ "universal-request-json"
5296
+ ],
4752
5297
  "reverseAuditSource": ".github/workflows"
4753
5298
  },
4754
5299
  {
4755
- "id": "workflow:buildchain-patrol-daily",
4756
- "name": "workflow:buildchain-patrol-daily",
5300
+ "id": "workflow:dev-delivery-warrant-cancel",
5301
+ "name": "workflow:dev-delivery-warrant-cancel",
4757
5302
  "kind": "workflow",
4758
- "sourcePath": ".github/workflows/buildchain-patrol-daily.yml",
4759
- "evidencePath": ".github/workflows/buildchain-patrol-daily.yml",
5303
+ "sourcePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
5304
+ "evidencePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
4760
5305
  "availability": "shipped",
4761
5306
  "visibility": "public",
4762
5307
  "participantFacing": true,
4763
5308
  "public": true,
4764
- "inputCount": 0,
4765
- "inputs": [],
5309
+ "inputCount": 13,
5310
+ "inputs": [
5311
+ "buildchain-ref",
5312
+ "buildchain-repository",
5313
+ "event-action",
5314
+ "expected-candidate-id",
5315
+ "expected-old-state-root",
5316
+ "expected-pr-number",
5317
+ "expected-source-head-sha",
5318
+ "observed-source-head-sha",
5319
+ "outcome",
5320
+ "reason",
5321
+ "target-branch",
5322
+ "terminal-evidence-root",
5323
+ "universal-request-json"
5324
+ ],
5325
+ "reverseAuditSource": ".github/workflows"
5326
+ },
5327
+ {
5328
+ "id": "workflow:dev-delivery-warrant-close",
5329
+ "name": "workflow:dev-delivery-warrant-close",
5330
+ "kind": "workflow",
5331
+ "sourcePath": ".github/workflows/dev-delivery-warrant-close.yml",
5332
+ "evidencePath": ".github/workflows/dev-delivery-warrant-close.yml",
5333
+ "availability": "shipped",
5334
+ "visibility": "public",
5335
+ "participantFacing": true,
5336
+ "public": true,
5337
+ "inputCount": 14,
5338
+ "inputs": [
5339
+ "buildchain-ref",
5340
+ "buildchain-repository",
5341
+ "current-base-sha",
5342
+ "expected-head-sha",
5343
+ "expected-pr-number",
5344
+ "merge-group-head-sha",
5345
+ "merge-group-tree-sha",
5346
+ "outcome",
5347
+ "reason",
5348
+ "replay-tree-sha",
5349
+ "required-context-roots-json",
5350
+ "target-branch",
5351
+ "terminal-evidence-root",
5352
+ "universal-request-json"
5353
+ ],
5354
+ "reverseAuditSource": ".github/workflows"
5355
+ },
5356
+ {
5357
+ "id": "workflow:dev-pr-auto-merge",
5358
+ "name": "workflow:dev-pr-auto-merge",
5359
+ "kind": "workflow",
5360
+ "sourcePath": ".github/workflows/dev-pr-auto-merge.yml",
5361
+ "evidencePath": ".github/workflows/dev-pr-auto-merge.yml",
5362
+ "availability": "shipped",
5363
+ "visibility": "public",
5364
+ "participantFacing": true,
5365
+ "public": true,
5366
+ "inputCount": 45,
5367
+ "inputs": [
5368
+ "active-lease-context",
5369
+ "affected-paths-json",
5370
+ "allowed-head-prefixes",
5371
+ "assignment-root",
5372
+ "block-labels",
5373
+ "buildchain-ref",
5374
+ "buildchain-repository",
5375
+ "closure-root",
5376
+ "defer-landing",
5377
+ "delivery-class",
5378
+ "delivery-priority",
5379
+ "delivery-warrant-mode",
5380
+ "dependency-root",
5381
+ "diagnostic-context",
5382
+ "dry-run",
5383
+ "environment-root",
5384
+ "expected-head-sha",
5385
+ "expected-pr-number",
5386
+ "handoff-workflow-id",
5387
+ "initiative-root",
5388
+ "landing-mode",
5389
+ "legacy-active-owner-binding-json",
5390
+ "max-merges",
5391
+ "merge-method",
5392
+ "native-command",
5393
+ "native-command-root",
5394
+ "native-heartbeat-seconds",
5395
+ "native-proof-json",
5396
+ "plan-root",
5397
+ "project-cut-proof-json",
5398
+ "queue-admission-context",
5399
+ "ready-label",
5400
+ "release-blocker-priority-json",
5401
+ "require-approval",
5402
+ "required-status-checks",
5403
+ "same-repository-only",
5404
+ "shard-evidence-roots-json",
5405
+ "source-identity-root",
5406
+ "source-patch-root",
5407
+ "source-workflow-id",
5408
+ "source-workflow-run-id",
5409
+ "target-branch",
5410
+ "toolchain-root",
5411
+ "universal-request-json",
5412
+ "warrant-lease-seconds"
5413
+ ],
5414
+ "reverseAuditSource": ".github/workflows"
5415
+ },
5416
+ {
5417
+ "id": "workflow:dev-qualification-patrol",
5418
+ "name": "workflow:dev-qualification-patrol",
5419
+ "kind": "workflow",
5420
+ "sourcePath": ".github/workflows/dev-qualification-patrol.yml",
5421
+ "evidencePath": ".github/workflows/dev-qualification-patrol.yml",
5422
+ "availability": "shipped",
5423
+ "visibility": "public",
5424
+ "participantFacing": true,
5425
+ "public": true,
5426
+ "inputCount": 11,
5427
+ "inputs": [
5428
+ "buildchain-ref",
5429
+ "buildchain-repository",
5430
+ "dev-workflow-path",
5431
+ "dispatch-inputs-json",
5432
+ "dry-run",
5433
+ "max-attempts",
5434
+ "mutation-authorized",
5435
+ "preflight-workflow-path",
5436
+ "priority-workflows-json",
5437
+ "source-branch",
5438
+ "universal-request-json"
5439
+ ],
5440
+ "reverseAuditSource": ".github/workflows"
5441
+ },
5442
+ {
5443
+ "id": "workflow:engineering-housekeeper",
5444
+ "name": "workflow:engineering-housekeeper",
5445
+ "kind": "workflow",
5446
+ "sourcePath": ".github/workflows/engineering-housekeeper.yml",
5447
+ "evidencePath": ".github/workflows/engineering-housekeeper.yml",
5448
+ "availability": "shipped",
5449
+ "visibility": "public",
5450
+ "participantFacing": true,
5451
+ "public": true,
5452
+ "inputCount": 15,
5453
+ "inputs": [
5454
+ "apply-enabled",
5455
+ "artifact-prefix",
5456
+ "artifact-retention-days",
5457
+ "buildchain-ref",
5458
+ "buildchain-repository",
5459
+ "max-actions",
5460
+ "mode",
5461
+ "protected-patterns",
5462
+ "repository",
5463
+ "retained-patterns",
5464
+ "stale-days",
5465
+ "stale-pull-request-label",
5466
+ "target-branch",
5467
+ "temporary-branch-patterns",
5468
+ "universal-request-json"
5469
+ ],
5470
+ "reverseAuditSource": ".github/workflows"
5471
+ },
5472
+ {
5473
+ "id": "workflow:github-artifact-attestation",
5474
+ "name": "workflow:github-artifact-attestation",
5475
+ "kind": "workflow",
5476
+ "sourcePath": ".github/workflows/github-artifact-attestation.yml",
5477
+ "evidencePath": ".github/workflows/github-artifact-attestation.yml",
5478
+ "availability": "shipped",
5479
+ "visibility": "public",
5480
+ "participantFacing": true,
5481
+ "public": true,
5482
+ "inputCount": 14,
5483
+ "inputs": [
5484
+ "buildchain-ref",
5485
+ "environment",
5486
+ "evidence-artifact-name",
5487
+ "evidence-run-id",
5488
+ "platform-manifest-artifact-name",
5489
+ "platform-manifest-relative-path",
5490
+ "policy-json",
5491
+ "release-passport-artifact-name",
5492
+ "release-passport-relative-path",
5493
+ "retention-days",
5494
+ "source-sha",
5495
+ "subject-artifact-name",
5496
+ "subject-relative-path",
5497
+ "universal-request-json"
5498
+ ],
5499
+ "reverseAuditSource": ".github/workflows"
5500
+ },
5501
+ {
5502
+ "id": "workflow:paper-release-sealed",
5503
+ "name": "workflow:paper-release-sealed",
5504
+ "kind": "workflow",
5505
+ "sourcePath": ".github/workflows/paper-release-sealed.yml",
5506
+ "evidencePath": ".github/workflows/paper-release-sealed.yml",
5507
+ "availability": "shipped",
5508
+ "visibility": "public",
5509
+ "participantFacing": true,
5510
+ "public": true,
5511
+ "inputCount": 27,
5512
+ "inputs": [
5513
+ "artifact-name",
5514
+ "artifact-paths",
5515
+ "artifact-retention-days",
5516
+ "branch-protection-bypass-apps",
5517
+ "branch-protection-bypass-teams",
5518
+ "branch-protection-bypass-users",
5519
+ "buildchain-contract-lock-path",
5520
+ "buildchain-ref",
5521
+ "buildchain-repository",
5522
+ "dry-run",
5523
+ "github-governance-receipt-json",
5524
+ "github-release",
5525
+ "github-release-notes",
5526
+ "github-release-title",
5527
+ "package-name",
5528
+ "publish-dist-tag",
5529
+ "publisher-workflow-path",
5530
+ "release-passport-impact-json",
5531
+ "release-passport-output-dir",
5532
+ "release-passport-product-name",
5533
+ "required-status-check",
5534
+ "target-ref",
5535
+ "target-sha",
5536
+ "toolchain-type",
5537
+ "universal-request-json",
5538
+ "verify-command",
5539
+ "working-directory"
5540
+ ],
5541
+ "reverseAuditSource": ".github/workflows"
5542
+ },
5543
+ {
5544
+ "id": "workflow:paper-release",
5545
+ "name": "workflow:paper-release",
5546
+ "kind": "workflow",
5547
+ "sourcePath": ".github/workflows/paper-release.yml",
5548
+ "evidencePath": ".github/workflows/paper-release.yml",
5549
+ "availability": "shipped",
5550
+ "visibility": "public",
5551
+ "participantFacing": true,
5552
+ "public": true,
5553
+ "inputCount": 39,
5554
+ "inputs": [
5555
+ "artifact-name",
5556
+ "artifact-retention-days",
5557
+ "branch-protection-bypass-apps",
5558
+ "branch-protection-bypass-teams",
5559
+ "branch-protection-bypass-users",
5560
+ "build-command",
5561
+ "buildchain-contract-compatibility-policy",
5562
+ "buildchain-contract-drift-issue-mode",
5563
+ "buildchain-contract-lock-path",
5564
+ "buildchain-ref",
5565
+ "buildchain-repository",
5566
+ "dry-run",
5567
+ "github-governance-receipt-json",
5568
+ "github-release",
5569
+ "github-release-notes",
5570
+ "github-release-title",
5571
+ "node-version",
5572
+ "package-name",
5573
+ "publication-admission-json",
5574
+ "publication-control-plane-audit-json",
5575
+ "publication-expected-json",
5576
+ "publication-runner-provenance-json",
5577
+ "publication-used-nonces-json",
5578
+ "publish-dist-tag",
5579
+ "publish-package-set-order",
5580
+ "release-passport-impact-json",
5581
+ "release-passport-output-dir",
5582
+ "release-passport-product-name",
5583
+ "required-status-check",
5584
+ "setup-node",
5585
+ "target-ref",
5586
+ "target-sha",
5587
+ "toolchain-command",
5588
+ "toolchain-digest",
5589
+ "toolchain-image",
5590
+ "toolchain-type",
5591
+ "universal-request-json",
5592
+ "verify-command",
5593
+ "working-directory"
5594
+ ],
5595
+ "reverseAuditSource": ".github/workflows"
5596
+ },
5597
+ {
5598
+ "id": "workflow:patrol-daily",
5599
+ "name": "workflow:patrol-daily",
5600
+ "kind": "workflow",
5601
+ "sourcePath": ".github/workflows/patrol-daily.yml",
5602
+ "evidencePath": ".github/workflows/patrol-daily.yml",
5603
+ "availability": "shipped",
5604
+ "visibility": "public",
5605
+ "participantFacing": true,
5606
+ "public": true,
5607
+ "inputCount": 14,
5608
+ "inputs": [
5609
+ "allowed-head-prefixes",
5610
+ "block-labels",
5611
+ "buildchain-ref",
5612
+ "buildchain-repository",
5613
+ "dry-run",
5614
+ "landing-mode",
5615
+ "max-actions",
5616
+ "merge-method",
5617
+ "ready-label",
5618
+ "require-approval",
5619
+ "required-status-checks",
5620
+ "same-repository-only",
5621
+ "target-branch",
5622
+ "universal-request-json"
5623
+ ],
5624
+ "reverseAuditSource": ".github/workflows"
5625
+ },
5626
+ {
5627
+ "id": "workflow:patrol-monthly",
5628
+ "name": "workflow:patrol-monthly",
5629
+ "kind": "workflow",
5630
+ "sourcePath": ".github/workflows/patrol-monthly.yml",
5631
+ "evidencePath": ".github/workflows/patrol-monthly.yml",
5632
+ "availability": "shipped",
5633
+ "visibility": "public",
5634
+ "participantFacing": true,
5635
+ "public": true,
5636
+ "inputCount": 5,
5637
+ "inputs": [
5638
+ "buildchain-ref",
5639
+ "buildchain-repository",
5640
+ "dry-run",
5641
+ "target-branch",
5642
+ "universal-request-json"
5643
+ ],
5644
+ "reverseAuditSource": ".github/workflows"
5645
+ },
5646
+ {
5647
+ "id": "workflow:patrol-observed-evidence",
5648
+ "name": "workflow:patrol-observed-evidence",
5649
+ "kind": "workflow",
5650
+ "sourcePath": ".github/workflows/patrol-observed-evidence.yml",
5651
+ "evidencePath": ".github/workflows/patrol-observed-evidence.yml",
5652
+ "availability": "shipped",
5653
+ "visibility": "public",
5654
+ "participantFacing": true,
5655
+ "public": true,
5656
+ "inputCount": 13,
5657
+ "inputs": [
5658
+ "artifact-path",
5659
+ "build-command",
5660
+ "buildchain-ref",
5661
+ "cloudfront-distribution",
5662
+ "evidence-source-path",
5663
+ "evidence-source-ref",
5664
+ "evidence-source-repository",
5665
+ "manifest-path",
5666
+ "production-aws-role-arn",
5667
+ "production-bucket",
5668
+ "production-environment",
5669
+ "universal-request-json",
5670
+ "verify-command"
5671
+ ],
5672
+ "reverseAuditSource": ".github/workflows"
5673
+ },
5674
+ {
5675
+ "id": "workflow:patrol-weekly",
5676
+ "name": "workflow:patrol-weekly",
5677
+ "kind": "workflow",
5678
+ "sourcePath": ".github/workflows/patrol-weekly.yml",
5679
+ "evidencePath": ".github/workflows/patrol-weekly.yml",
5680
+ "availability": "shipped",
5681
+ "visibility": "public",
5682
+ "participantFacing": true,
5683
+ "public": true,
5684
+ "inputCount": 5,
5685
+ "inputs": [
5686
+ "buildchain-ref",
5687
+ "buildchain-repository",
5688
+ "dry-run",
5689
+ "target-branch",
5690
+ "universal-request-json"
5691
+ ],
5692
+ "reverseAuditSource": ".github/workflows"
5693
+ },
5694
+ {
5695
+ "id": "workflow:public-build-adopter-qualification",
5696
+ "name": "workflow:public-build-adopter-qualification",
5697
+ "kind": "workflow",
5698
+ "sourcePath": ".github/workflows/public-build-adopter-qualification.yml",
5699
+ "evidencePath": ".github/workflows/public-build-adopter-qualification.yml",
5700
+ "availability": "shipped",
5701
+ "visibility": "public",
5702
+ "participantFacing": true,
5703
+ "public": true,
5704
+ "inputCount": 9,
5705
+ "inputs": [
5706
+ "archive-path",
5707
+ "bootstrap-path",
5708
+ "consumer",
5709
+ "consumer-ref",
5710
+ "consumer-repository",
5711
+ "input-path",
5712
+ "invocation-source-path",
5713
+ "node-version",
5714
+ "universal-request-json"
5715
+ ],
5716
+ "reverseAuditSource": ".github/workflows"
5717
+ },
5718
+ {
5719
+ "id": "workflow:public-build-candidate",
5720
+ "name": "workflow:public-build-candidate",
5721
+ "kind": "workflow",
5722
+ "sourcePath": ".github/workflows/public-build-candidate.yml",
5723
+ "evidencePath": ".github/workflows/public-build-candidate.yml",
5724
+ "availability": "shipped",
5725
+ "visibility": "public",
5726
+ "participantFacing": true,
5727
+ "public": true,
5728
+ "inputCount": 97,
5729
+ "inputs": [
5730
+ "artifact-compression-level",
5731
+ "artifact-finalization-command",
5732
+ "artifact-finalization-on-platform",
5733
+ "artifact-name",
5734
+ "artifact-name-template",
5735
+ "artifact-paths",
5736
+ "artifact-relay-s3-bucket",
5737
+ "artifact-relay-s3-download-role-arn",
5738
+ "artifact-relay-s3-oidc-audience",
5739
+ "artifact-relay-s3-prefix",
5740
+ "artifact-relay-s3-region",
5741
+ "artifact-relay-s3-role-arn",
5742
+ "artifact-relay-s3-upload-role-arn",
5743
+ "artifact-retention-days",
5744
+ "artifact-signing-request-upload-no-proxy",
5745
+ "artifact-transfer-mode",
5746
+ "aws-codebuild-project",
5747
+ "aws-ec2-macos-runner-label",
5748
+ "aws-ec2-windows-runner-label",
5749
+ "build-command",
5750
+ "buildchain-alpha-contract-lock-path",
5751
+ "buildchain-channel",
5752
+ "buildchain-contract-compatibility-policy",
5753
+ "buildchain-contract-drift-issue-mode",
5754
+ "buildchain-contract-expected-channel",
5755
+ "buildchain-contract-expected-major",
5756
+ "buildchain-contract-lock-path",
5757
+ "buildchain-expected-channel",
5758
+ "buildchain-expected-major",
5759
+ "buildchain-ref",
5760
+ "buildchain-repository",
5761
+ "buildchain-stable-contract-lock-path",
5762
+ "buildchain-visible-workflow",
5763
+ "cache-dependency-lock-root",
5764
+ "cache-policy-root",
5765
+ "cache-toolchain-root",
5766
+ "cargo-registry-index",
5767
+ "checkout-cache-fallback",
5768
+ "checkout-cache-fetch-attempts",
5769
+ "checkout-cache-github-timeout-seconds",
5770
+ "checkout-cache-mirror-url-template",
5771
+ "checkout-cache-mode",
5772
+ "checkout-cache-reference-repository-template",
5773
+ "checkout-cache-timeout-seconds",
5774
+ "checkout-history-mode",
5775
+ "compiler-cache-platforms-json",
5776
+ "compiler-cache-provider",
5777
+ "compiler-cache-required",
5778
+ "control-runner-json",
5779
+ "credential-island-caller-owned",
5780
+ "credential-island-environment",
5781
+ "credential-island-macos-app-path",
5782
+ "credential-island-macos-platform-id",
5783
+ "expected-artifacts-json",
5784
+ "fail-fast",
5785
+ "gate-profile-aggregate-json",
5786
+ "github-artifact-attestation-platform-id",
5787
+ "github-artifact-attestation-signer-sha",
5788
+ "github-artifact-attestation-subject-path",
5789
+ "install-command",
5790
+ "kfd-agent-hub",
5791
+ "lifecycle-timeout-minutes",
5792
+ "linux-container-image",
5793
+ "linux-container-preset",
5794
+ "node-version",
5795
+ "platforms-json",
5796
+ "pre-upload-transport-smoke-artifact-root",
5797
+ "pre-upload-transport-smoke-scenario-path",
5798
+ "process-sample-interval-ms",
5799
+ "process-summary-path",
5800
+ "publish-anchor-request-json",
5801
+ "publish-channel",
5802
+ "publish-refs-json",
5803
+ "publish-registry",
5804
+ "publish-source-ref",
5805
+ "release-candidate",
5806
+ "release-candidate-family-evidence-json",
5807
+ "requested-parallelism",
5808
+ "require-build",
5809
+ "require-install",
5810
+ "require-trusted-event",
5811
+ "require-verify",
5812
+ "runner-preset",
5813
+ "rust-toolchain",
5814
+ "rustup-dist-server",
5815
+ "rustup-update-root",
5816
+ "sample-process-tree",
5817
+ "self-hosted-offline-fallback",
5818
+ "setup-node",
5819
+ "setup-rust",
5820
+ "shifu-cache-profile-digest",
5821
+ "shifu-cache-profile-ref",
5822
+ "universal-request-json",
5823
+ "untrusted-policy",
5824
+ "verify-command",
5825
+ "verify-substage-evidence-path",
5826
+ "working-directory"
5827
+ ],
5828
+ "reverseAuditSource": ".github/workflows"
5829
+ },
5830
+ {
5831
+ "id": "workflow:public-build-check",
5832
+ "name": "workflow:public-build-check",
5833
+ "kind": "workflow",
5834
+ "sourcePath": ".github/workflows/public-build-check.yml",
5835
+ "evidencePath": ".github/workflows/public-build-check.yml",
5836
+ "availability": "shipped",
5837
+ "visibility": "public",
5838
+ "participantFacing": true,
5839
+ "public": true,
5840
+ "inputCount": 13,
5841
+ "inputs": [
5842
+ "buildchain-ref",
5843
+ "buildchain-repository",
5844
+ "mode",
5845
+ "node-version",
5846
+ "require-version-state",
5847
+ "source-proof-closure-paths-json",
5848
+ "source-proof-dependency-paths-json",
5849
+ "source-proof-policy-paths-json",
5850
+ "source-proof-required-contexts-json",
5851
+ "source-proof-reuse",
5852
+ "universal-request-json",
5853
+ "upload-artifacts",
5854
+ "working-directory"
5855
+ ],
5856
+ "reverseAuditSource": ".github/workflows"
5857
+ },
5858
+ {
5859
+ "id": "workflow:public-build-demo",
5860
+ "name": "workflow:public-build-demo",
5861
+ "kind": "workflow",
5862
+ "sourcePath": ".github/workflows/public-build-demo.yml",
5863
+ "evidencePath": ".github/workflows/public-build-demo.yml",
5864
+ "availability": "shipped",
5865
+ "visibility": "public",
5866
+ "participantFacing": true,
5867
+ "public": true,
5868
+ "inputCount": 13,
5869
+ "inputs": [
5870
+ "artifact-retention-days",
5871
+ "binary-artifact-digest",
5872
+ "binary-artifact-name",
5873
+ "buildchain-repository",
5874
+ "materialize",
5875
+ "materialize-base-ref",
5876
+ "media-profile",
5877
+ "render-failure-advisory",
5878
+ "render-media",
5879
+ "renderer-image",
5880
+ "scenario-path",
5881
+ "source-ref",
5882
+ "universal-request-json"
5883
+ ],
5884
+ "reverseAuditSource": ".github/workflows"
5885
+ },
5886
+ {
5887
+ "id": "workflow:public-build-publication",
5888
+ "name": "workflow:public-build-publication",
5889
+ "kind": "workflow",
5890
+ "sourcePath": ".github/workflows/public-build-publication.yml",
5891
+ "evidencePath": ".github/workflows/public-build-publication.yml",
5892
+ "availability": "shipped",
5893
+ "visibility": "public",
5894
+ "participantFacing": true,
5895
+ "public": true,
5896
+ "inputCount": 24,
5897
+ "inputs": [
5898
+ "artifact-name",
5899
+ "artifact-paths",
5900
+ "artifact-retention-days",
5901
+ "build-command",
5902
+ "buildchain-alpha-contract-lock-path",
5903
+ "buildchain-contract-compatibility-policy",
5904
+ "buildchain-contract-drift-issue-mode",
5905
+ "buildchain-contract-lock-path",
5906
+ "buildchain-ref",
5907
+ "buildchain-repository",
5908
+ "buildchain-stable-contract-lock-path",
5909
+ "node-version",
5910
+ "package-name",
5911
+ "prepare-paper-package",
5912
+ "publish-dist-tag",
5913
+ "setup-node",
5914
+ "target-ref",
5915
+ "toolchain-command",
5916
+ "toolchain-digest",
5917
+ "toolchain-image",
5918
+ "toolchain-type",
5919
+ "universal-request-json",
5920
+ "verify-command",
5921
+ "working-directory"
5922
+ ],
5923
+ "reverseAuditSource": ".github/workflows"
5924
+ },
5925
+ {
5926
+ "id": "workflow:public-build-stage-capsule-canary",
5927
+ "name": "workflow:public-build-stage-capsule-canary",
5928
+ "kind": "workflow",
5929
+ "sourcePath": ".github/workflows/public-build-stage-capsule-canary.yml",
5930
+ "evidencePath": ".github/workflows/public-build-stage-capsule-canary.yml",
5931
+ "availability": "shipped",
5932
+ "visibility": "public",
5933
+ "participantFacing": true,
5934
+ "public": true,
5935
+ "inputCount": 7,
5936
+ "inputs": [
5937
+ "build-artifact-path",
5938
+ "consumer",
5939
+ "go-version",
5940
+ "install-artifact-path",
5941
+ "node-version",
5942
+ "universal-request-json",
5943
+ "verify-artifact-path"
5944
+ ],
5945
+ "reverseAuditSource": ".github/workflows"
5946
+ },
5947
+ {
5948
+ "id": "workflow:public-ops-alpha-candidate-patrol",
5949
+ "name": "workflow:public-ops-alpha-candidate-patrol",
5950
+ "kind": "workflow",
5951
+ "sourcePath": ".github/workflows/public-ops-alpha-candidate-patrol.yml",
5952
+ "evidencePath": ".github/workflows/public-ops-alpha-candidate-patrol.yml",
5953
+ "availability": "shipped",
5954
+ "visibility": "public",
5955
+ "participantFacing": true,
5956
+ "public": true,
5957
+ "inputCount": 16,
5958
+ "inputs": [
5959
+ "alpha-workflow-path",
5960
+ "auto-merge",
5961
+ "buildchain-ref",
5962
+ "buildchain-repository",
5963
+ "create-pull-request",
5964
+ "dev-workflow-path",
5965
+ "dry-run",
5966
+ "max-age-seconds",
5967
+ "merge-method",
5968
+ "pull-request-body-prefix",
5969
+ "pull-request-body-prefix-renderer",
5970
+ "reactivation-authorized",
5971
+ "settlement-authorized",
5972
+ "source-branch",
5973
+ "target-branch",
5974
+ "universal-request-json"
5975
+ ],
5976
+ "reverseAuditSource": ".github/workflows"
5977
+ },
5978
+ {
5979
+ "id": "workflow:public-ops-bootstrap-recovery",
5980
+ "name": "workflow:public-ops-bootstrap-recovery",
5981
+ "kind": "workflow",
5982
+ "sourcePath": ".github/workflows/public-ops-bootstrap-recovery.yml",
5983
+ "evidencePath": ".github/workflows/public-ops-bootstrap-recovery.yml",
5984
+ "availability": "shipped",
5985
+ "visibility": "public",
5986
+ "participantFacing": true,
5987
+ "public": true,
5988
+ "inputCount": 1,
5989
+ "inputs": [
5990
+ "request-json"
5991
+ ],
5992
+ "reverseAuditSource": ".github/workflows"
5993
+ },
5994
+ {
5995
+ "id": "workflow:public-ops-bootstrap",
5996
+ "name": "workflow:public-ops-bootstrap",
5997
+ "kind": "workflow",
5998
+ "sourcePath": ".github/workflows/public-ops-bootstrap.yml",
5999
+ "evidencePath": ".github/workflows/public-ops-bootstrap.yml",
6000
+ "availability": "shipped",
6001
+ "visibility": "public",
6002
+ "participantFacing": true,
6003
+ "public": true,
6004
+ "inputCount": 1,
6005
+ "inputs": [
6006
+ "request-json"
6007
+ ],
6008
+ "reverseAuditSource": ".github/workflows"
6009
+ },
6010
+ {
6011
+ "id": "workflow:public-ops-dev-auto-merge",
6012
+ "name": "workflow:public-ops-dev-auto-merge",
6013
+ "kind": "workflow",
6014
+ "sourcePath": ".github/workflows/public-ops-dev-auto-merge.yml",
6015
+ "evidencePath": ".github/workflows/public-ops-dev-auto-merge.yml",
6016
+ "availability": "shipped",
6017
+ "visibility": "public",
6018
+ "participantFacing": true,
6019
+ "public": true,
6020
+ "inputCount": 45,
6021
+ "inputs": [
6022
+ "active-lease-context",
6023
+ "affected-paths-json",
6024
+ "allowed-head-prefixes",
6025
+ "assignment-root",
6026
+ "block-labels",
6027
+ "buildchain-ref",
6028
+ "buildchain-repository",
6029
+ "closure-root",
6030
+ "defer-landing",
6031
+ "delivery-class",
6032
+ "delivery-priority",
6033
+ "delivery-warrant-mode",
6034
+ "dependency-root",
6035
+ "diagnostic-context",
6036
+ "dry-run",
6037
+ "environment-root",
6038
+ "expected-head-sha",
6039
+ "expected-pr-number",
6040
+ "handoff-workflow-id",
6041
+ "initiative-root",
6042
+ "landing-mode",
6043
+ "legacy-active-owner-binding-json",
6044
+ "max-merges",
6045
+ "merge-method",
6046
+ "native-command",
6047
+ "native-command-root",
6048
+ "native-heartbeat-seconds",
6049
+ "native-proof-json",
6050
+ "plan-root",
6051
+ "project-cut-proof-json",
6052
+ "queue-admission-context",
6053
+ "ready-label",
6054
+ "release-blocker-priority-json",
6055
+ "require-approval",
6056
+ "required-status-checks",
6057
+ "same-repository-only",
6058
+ "shard-evidence-roots-json",
6059
+ "source-identity-root",
6060
+ "source-patch-root",
6061
+ "source-workflow-id",
6062
+ "source-workflow-run-id",
6063
+ "target-branch",
6064
+ "toolchain-root",
6065
+ "universal-request-json",
6066
+ "warrant-lease-seconds"
6067
+ ],
6068
+ "reverseAuditSource": ".github/workflows"
6069
+ },
6070
+ {
6071
+ "id": "workflow:public-ops-dev-qualification-patrol",
6072
+ "name": "workflow:public-ops-dev-qualification-patrol",
6073
+ "kind": "workflow",
6074
+ "sourcePath": ".github/workflows/public-ops-dev-qualification-patrol.yml",
6075
+ "evidencePath": ".github/workflows/public-ops-dev-qualification-patrol.yml",
6076
+ "availability": "shipped",
6077
+ "visibility": "public",
6078
+ "participantFacing": true,
6079
+ "public": true,
6080
+ "inputCount": 11,
6081
+ "inputs": [
6082
+ "buildchain-ref",
6083
+ "buildchain-repository",
6084
+ "dev-workflow-path",
6085
+ "dispatch-inputs-json",
6086
+ "dry-run",
6087
+ "max-attempts",
6088
+ "mutation-authorized",
6089
+ "preflight-workflow-path",
6090
+ "priority-workflows-json",
6091
+ "source-branch",
6092
+ "universal-request-json"
6093
+ ],
6094
+ "reverseAuditSource": ".github/workflows"
6095
+ },
6096
+ {
6097
+ "id": "workflow:public-ops-housekeeping",
6098
+ "name": "workflow:public-ops-housekeeping",
6099
+ "kind": "workflow",
6100
+ "sourcePath": ".github/workflows/public-ops-housekeeping.yml",
6101
+ "evidencePath": ".github/workflows/public-ops-housekeeping.yml",
6102
+ "availability": "shipped",
6103
+ "visibility": "public",
6104
+ "participantFacing": true,
6105
+ "public": true,
6106
+ "inputCount": 15,
6107
+ "inputs": [
6108
+ "apply-enabled",
6109
+ "artifact-prefix",
6110
+ "artifact-retention-days",
6111
+ "buildchain-ref",
6112
+ "buildchain-repository",
6113
+ "max-actions",
6114
+ "mode",
6115
+ "protected-patterns",
6116
+ "repository",
6117
+ "retained-patterns",
6118
+ "stale-days",
6119
+ "stale-pull-request-label",
6120
+ "target-branch",
6121
+ "temporary-branch-patterns",
6122
+ "universal-request-json"
6123
+ ],
6124
+ "reverseAuditSource": ".github/workflows"
6125
+ },
6126
+ {
6127
+ "id": "workflow:public-ops-observed-evidence",
6128
+ "name": "workflow:public-ops-observed-evidence",
6129
+ "kind": "workflow",
6130
+ "sourcePath": ".github/workflows/public-ops-observed-evidence.yml",
6131
+ "evidencePath": ".github/workflows/public-ops-observed-evidence.yml",
6132
+ "availability": "shipped",
6133
+ "visibility": "public",
6134
+ "participantFacing": true,
6135
+ "public": true,
6136
+ "inputCount": 13,
6137
+ "inputs": [
6138
+ "artifact-path",
6139
+ "build-command",
6140
+ "buildchain-ref",
6141
+ "cloudfront-distribution",
6142
+ "evidence-source-path",
6143
+ "evidence-source-ref",
6144
+ "evidence-source-repository",
6145
+ "manifest-path",
6146
+ "production-aws-role-arn",
6147
+ "production-bucket",
6148
+ "production-environment",
6149
+ "universal-request-json",
6150
+ "verify-command"
6151
+ ],
6152
+ "reverseAuditSource": ".github/workflows"
6153
+ },
6154
+ {
6155
+ "id": "workflow:public-ops-patrol-daily",
6156
+ "name": "workflow:public-ops-patrol-daily",
6157
+ "kind": "workflow",
6158
+ "sourcePath": ".github/workflows/public-ops-patrol-daily.yml",
6159
+ "evidencePath": ".github/workflows/public-ops-patrol-daily.yml",
6160
+ "availability": "shipped",
6161
+ "visibility": "public",
6162
+ "participantFacing": true,
6163
+ "public": true,
6164
+ "inputCount": 14,
6165
+ "inputs": [
6166
+ "allowed-head-prefixes",
6167
+ "block-labels",
6168
+ "buildchain-ref",
6169
+ "buildchain-repository",
6170
+ "dry-run",
6171
+ "landing-mode",
6172
+ "max-actions",
6173
+ "merge-method",
6174
+ "ready-label",
6175
+ "require-approval",
6176
+ "required-status-checks",
6177
+ "same-repository-only",
6178
+ "target-branch",
6179
+ "universal-request-json"
6180
+ ],
6181
+ "reverseAuditSource": ".github/workflows"
6182
+ },
6183
+ {
6184
+ "id": "workflow:public-ops-patrol-monthly",
6185
+ "name": "workflow:public-ops-patrol-monthly",
6186
+ "kind": "workflow",
6187
+ "sourcePath": ".github/workflows/public-ops-patrol-monthly.yml",
6188
+ "evidencePath": ".github/workflows/public-ops-patrol-monthly.yml",
6189
+ "availability": "shipped",
6190
+ "visibility": "public",
6191
+ "participantFacing": true,
6192
+ "public": true,
6193
+ "inputCount": 5,
6194
+ "inputs": [
6195
+ "buildchain-ref",
6196
+ "buildchain-repository",
6197
+ "dry-run",
6198
+ "target-branch",
6199
+ "universal-request-json"
6200
+ ],
6201
+ "reverseAuditSource": ".github/workflows"
6202
+ },
6203
+ {
6204
+ "id": "workflow:public-ops-patrol-weekly",
6205
+ "name": "workflow:public-ops-patrol-weekly",
6206
+ "kind": "workflow",
6207
+ "sourcePath": ".github/workflows/public-ops-patrol-weekly.yml",
6208
+ "evidencePath": ".github/workflows/public-ops-patrol-weekly.yml",
6209
+ "availability": "shipped",
6210
+ "visibility": "public",
6211
+ "participantFacing": true,
6212
+ "public": true,
6213
+ "inputCount": 5,
6214
+ "inputs": [
6215
+ "buildchain-ref",
6216
+ "buildchain-repository",
6217
+ "dry-run",
6218
+ "target-branch",
6219
+ "universal-request-json"
6220
+ ],
6221
+ "reverseAuditSource": ".github/workflows"
6222
+ },
6223
+ {
6224
+ "id": "workflow:public-ops-patrol",
6225
+ "name": "workflow:public-ops-patrol",
6226
+ "kind": "workflow",
6227
+ "sourcePath": ".github/workflows/public-ops-patrol.yml",
6228
+ "evidencePath": ".github/workflows/public-ops-patrol.yml",
6229
+ "availability": "shipped",
6230
+ "visibility": "public",
6231
+ "participantFacing": true,
6232
+ "public": true,
6233
+ "inputCount": 17,
6234
+ "inputs": [
6235
+ "allowed-head-prefixes",
6236
+ "block-labels",
6237
+ "buildchain-ref",
6238
+ "buildchain-repository",
6239
+ "cadence",
6240
+ "capabilities",
6241
+ "dry-run",
6242
+ "landing-mode",
6243
+ "max-actions",
6244
+ "merge-method",
6245
+ "mode",
6246
+ "ready-label",
6247
+ "require-approval",
6248
+ "required-status-checks",
6249
+ "same-repository-only",
6250
+ "target-branch",
6251
+ "universal-request-json"
6252
+ ],
6253
+ "reverseAuditSource": ".github/workflows"
6254
+ },
6255
+ {
6256
+ "id": "workflow:public-ops-release-governance",
6257
+ "name": "workflow:public-ops-release-governance",
6258
+ "kind": "workflow",
6259
+ "sourcePath": ".github/workflows/public-ops-release-governance.yml",
6260
+ "evidencePath": ".github/workflows/public-ops-release-governance.yml",
6261
+ "availability": "shipped",
6262
+ "visibility": "public",
6263
+ "participantFacing": true,
6264
+ "public": true,
6265
+ "inputCount": 5,
6266
+ "inputs": [
6267
+ "apply",
6268
+ "branch",
6269
+ "buildchain-ref",
6270
+ "candidate-sha",
6271
+ "universal-request-json"
6272
+ ],
6273
+ "reverseAuditSource": ".github/workflows"
6274
+ },
6275
+ {
6276
+ "id": "workflow:public-ops-stable-candidate-patrol",
6277
+ "name": "workflow:public-ops-stable-candidate-patrol",
6278
+ "kind": "workflow",
6279
+ "sourcePath": ".github/workflows/public-ops-stable-candidate-patrol.yml",
6280
+ "evidencePath": ".github/workflows/public-ops-stable-candidate-patrol.yml",
6281
+ "availability": "shipped",
6282
+ "visibility": "public",
6283
+ "participantFacing": true,
6284
+ "public": true,
6285
+ "inputCount": 17,
6286
+ "inputs": [
6287
+ "auto-approve",
6288
+ "auto-merge",
6289
+ "auto-promote",
6290
+ "buildchain-ref",
6291
+ "buildchain-repository",
6292
+ "dry-run",
6293
+ "hold",
6294
+ "hold-reason",
6295
+ "ledger-ref",
6296
+ "merge-method",
6297
+ "minimum-soak-seconds",
6298
+ "release-now",
6299
+ "required-checks",
6300
+ "revoke-reason",
6301
+ "revoked-versions",
6302
+ "target-branch",
6303
+ "universal-request-json"
6304
+ ],
6305
+ "reverseAuditSource": ".github/workflows"
6306
+ },
6307
+ {
6308
+ "id": "workflow:public-ops-tail-reseal",
6309
+ "name": "workflow:public-ops-tail-reseal",
6310
+ "kind": "workflow",
6311
+ "sourcePath": ".github/workflows/public-ops-tail-reseal.yml",
6312
+ "evidencePath": ".github/workflows/public-ops-tail-reseal.yml",
6313
+ "availability": "shipped",
6314
+ "visibility": "public",
6315
+ "participantFacing": true,
6316
+ "public": true,
6317
+ "inputCount": 5,
6318
+ "inputs": [
6319
+ "artifact-retention-days",
6320
+ "consumer-policy-receipt-json",
6321
+ "macos-finalization-command",
6322
+ "request-json",
6323
+ "universal-request-json"
6324
+ ],
6325
+ "reverseAuditSource": ".github/workflows"
6326
+ },
6327
+ {
6328
+ "id": "workflow:public-ops-warrant-cancel",
6329
+ "name": "workflow:public-ops-warrant-cancel",
6330
+ "kind": "workflow",
6331
+ "sourcePath": ".github/workflows/public-ops-warrant-cancel.yml",
6332
+ "evidencePath": ".github/workflows/public-ops-warrant-cancel.yml",
6333
+ "availability": "shipped",
6334
+ "visibility": "public",
6335
+ "participantFacing": true,
6336
+ "public": true,
6337
+ "inputCount": 13,
6338
+ "inputs": [
6339
+ "buildchain-ref",
6340
+ "buildchain-repository",
6341
+ "event-action",
6342
+ "expected-candidate-id",
6343
+ "expected-old-state-root",
6344
+ "expected-pr-number",
6345
+ "expected-source-head-sha",
6346
+ "observed-source-head-sha",
6347
+ "outcome",
6348
+ "reason",
6349
+ "target-branch",
6350
+ "terminal-evidence-root",
6351
+ "universal-request-json"
6352
+ ],
6353
+ "reverseAuditSource": ".github/workflows"
6354
+ },
6355
+ {
6356
+ "id": "workflow:public-ops-warrant-close",
6357
+ "name": "workflow:public-ops-warrant-close",
6358
+ "kind": "workflow",
6359
+ "sourcePath": ".github/workflows/public-ops-warrant-close.yml",
6360
+ "evidencePath": ".github/workflows/public-ops-warrant-close.yml",
6361
+ "availability": "shipped",
6362
+ "visibility": "public",
6363
+ "participantFacing": true,
6364
+ "public": true,
6365
+ "inputCount": 14,
6366
+ "inputs": [
6367
+ "buildchain-ref",
6368
+ "buildchain-repository",
6369
+ "current-base-sha",
6370
+ "expected-head-sha",
6371
+ "expected-pr-number",
6372
+ "merge-group-head-sha",
6373
+ "merge-group-tree-sha",
6374
+ "outcome",
6375
+ "reason",
6376
+ "replay-tree-sha",
6377
+ "required-context-roots-json",
6378
+ "target-branch",
6379
+ "terminal-evidence-root",
6380
+ "universal-request-json"
6381
+ ],
6382
+ "reverseAuditSource": ".github/workflows"
6383
+ },
6384
+ {
6385
+ "id": "workflow:public-release-artifact-attestation",
6386
+ "name": "workflow:public-release-artifact-attestation",
6387
+ "kind": "workflow",
6388
+ "sourcePath": ".github/workflows/public-release-artifact-attestation.yml",
6389
+ "evidencePath": ".github/workflows/public-release-artifact-attestation.yml",
6390
+ "availability": "shipped",
6391
+ "visibility": "public",
6392
+ "participantFacing": true,
6393
+ "public": true,
6394
+ "inputCount": 14,
6395
+ "inputs": [
6396
+ "buildchain-ref",
6397
+ "environment",
6398
+ "evidence-artifact-name",
6399
+ "evidence-run-id",
6400
+ "platform-manifest-artifact-name",
6401
+ "platform-manifest-relative-path",
6402
+ "policy-json",
6403
+ "release-passport-artifact-name",
6404
+ "release-passport-relative-path",
6405
+ "retention-days",
6406
+ "source-sha",
6407
+ "subject-artifact-name",
6408
+ "subject-relative-path",
6409
+ "universal-request-json"
6410
+ ],
6411
+ "reverseAuditSource": ".github/workflows"
6412
+ },
6413
+ {
6414
+ "id": "workflow:public-release-paper-sealed",
6415
+ "name": "workflow:public-release-paper-sealed",
6416
+ "kind": "workflow",
6417
+ "sourcePath": ".github/workflows/public-release-paper-sealed.yml",
6418
+ "evidencePath": ".github/workflows/public-release-paper-sealed.yml",
6419
+ "availability": "shipped",
6420
+ "visibility": "public",
6421
+ "participantFacing": true,
6422
+ "public": true,
6423
+ "inputCount": 27,
6424
+ "inputs": [
6425
+ "artifact-name",
6426
+ "artifact-paths",
6427
+ "artifact-retention-days",
6428
+ "branch-protection-bypass-apps",
6429
+ "branch-protection-bypass-teams",
6430
+ "branch-protection-bypass-users",
6431
+ "buildchain-contract-lock-path",
6432
+ "buildchain-ref",
6433
+ "buildchain-repository",
6434
+ "dry-run",
6435
+ "github-governance-receipt-json",
6436
+ "github-release",
6437
+ "github-release-notes",
6438
+ "github-release-title",
6439
+ "package-name",
6440
+ "publish-dist-tag",
6441
+ "publisher-workflow-path",
6442
+ "release-passport-impact-json",
6443
+ "release-passport-output-dir",
6444
+ "release-passport-product-name",
6445
+ "required-status-check",
6446
+ "target-ref",
6447
+ "target-sha",
6448
+ "toolchain-type",
6449
+ "universal-request-json",
6450
+ "verify-command",
6451
+ "working-directory"
6452
+ ],
6453
+ "reverseAuditSource": ".github/workflows"
6454
+ },
6455
+ {
6456
+ "id": "workflow:public-release-paper",
6457
+ "name": "workflow:public-release-paper",
6458
+ "kind": "workflow",
6459
+ "sourcePath": ".github/workflows/public-release-paper.yml",
6460
+ "evidencePath": ".github/workflows/public-release-paper.yml",
6461
+ "availability": "shipped",
6462
+ "visibility": "public",
6463
+ "participantFacing": true,
6464
+ "public": true,
6465
+ "inputCount": 39,
6466
+ "inputs": [
6467
+ "artifact-name",
6468
+ "artifact-retention-days",
6469
+ "branch-protection-bypass-apps",
6470
+ "branch-protection-bypass-teams",
6471
+ "branch-protection-bypass-users",
6472
+ "build-command",
6473
+ "buildchain-contract-compatibility-policy",
6474
+ "buildchain-contract-drift-issue-mode",
6475
+ "buildchain-contract-lock-path",
6476
+ "buildchain-ref",
6477
+ "buildchain-repository",
6478
+ "dry-run",
6479
+ "github-governance-receipt-json",
6480
+ "github-release",
6481
+ "github-release-notes",
6482
+ "github-release-title",
6483
+ "node-version",
6484
+ "package-name",
6485
+ "publication-admission-json",
6486
+ "publication-control-plane-audit-json",
6487
+ "publication-expected-json",
6488
+ "publication-runner-provenance-json",
6489
+ "publication-used-nonces-json",
6490
+ "publish-dist-tag",
6491
+ "publish-package-set-order",
6492
+ "release-passport-impact-json",
6493
+ "release-passport-output-dir",
6494
+ "release-passport-product-name",
6495
+ "required-status-check",
6496
+ "setup-node",
6497
+ "target-ref",
6498
+ "target-sha",
6499
+ "toolchain-command",
6500
+ "toolchain-digest",
6501
+ "toolchain-image",
6502
+ "toolchain-type",
6503
+ "universal-request-json",
6504
+ "verify-command",
6505
+ "working-directory"
6506
+ ],
6507
+ "reverseAuditSource": ".github/workflows"
6508
+ },
6509
+ {
6510
+ "id": "workflow:public-release-promote",
6511
+ "name": "workflow:public-release-promote",
6512
+ "kind": "workflow",
6513
+ "sourcePath": ".github/workflows/public-release-promote.yml",
6514
+ "evidencePath": ".github/workflows/public-release-promote.yml",
6515
+ "availability": "shipped",
6516
+ "visibility": "public",
6517
+ "participantFacing": true,
6518
+ "public": true,
6519
+ "inputCount": 107,
6520
+ "inputs": [
6521
+ "allow-repository",
6522
+ "artifact-name",
6523
+ "artifact-patterns",
6524
+ "branch-protection-bypass-apps",
6525
+ "branch-protection-bypass-teams",
6526
+ "branch-protection-bypass-users",
6527
+ "buildchain-alpha-contract-lock-path",
6528
+ "buildchain-channel",
6529
+ "buildchain-contract-compatibility-policy",
6530
+ "buildchain-contract-drift-issue-mode",
6531
+ "buildchain-contract-lock-path",
6532
+ "buildchain-ref",
6533
+ "buildchain-repository",
6534
+ "buildchain-stable-contract-lock-path",
6535
+ "channel",
6536
+ "declarative-release-tail",
6537
+ "dry-run",
6538
+ "github-artifact-attestation-environment",
6539
+ "github-artifact-attestation-policy-json",
6540
+ "github-artifact-attestation-retention-days",
6541
+ "github-governance-receipt-json",
6542
+ "github-release",
6543
+ "github-release-notes",
6544
+ "github-release-payload-patterns",
6545
+ "github-release-title",
6546
+ "package-manager",
6547
+ "provider-failure-after-capability",
6548
+ "publication-admission-json",
6549
+ "publication-auto-admission",
6550
+ "publication-auto-no-gate",
6551
+ "publication-commit-command",
6552
+ "publication-commit-evidence-path",
6553
+ "publication-consumer-predicate-id",
6554
+ "publication-consumer-qualification-command",
6555
+ "publication-consumer-qualification-controller-sha",
6556
+ "publication-control-plane-audit-json",
6557
+ "publication-expected-json",
6558
+ "publication-gate-aggregate-json",
6559
+ "publication-gate-command",
6560
+ "publication-gate-controller-sha",
6561
+ "publication-package-name",
6562
+ "publication-product",
6563
+ "publication-publisher-workflow-path",
6564
+ "publication-runner-provenance-json",
6565
+ "publication-target",
6566
+ "publication-used-nonces-json",
6567
+ "publication-used-qualification-nonces-json",
6568
+ "publish-artifact-kind",
6569
+ "publish-command",
6570
+ "publish-dist-tag",
6571
+ "publish-mode",
6572
+ "publish-package-main",
6573
+ "publish-package-set-order",
6574
+ "publish-rematerialize-on-resume",
6575
+ "publish-required-artifacts-json",
6576
+ "publish-target",
6577
+ "publish-transaction-override",
6578
+ "release-activation-command",
6579
+ "release-activation-receipt-set-path",
6580
+ "release-candidate-family-assignment-id",
6581
+ "release-candidate-family-evidence-required",
6582
+ "release-candidate-family-evidence-root",
6583
+ "release-candidate-family-initiative-id",
6584
+ "release-candidate-wait-seconds",
6585
+ "release-candidate-workflow-file",
6586
+ "release-candidate-workflow-name",
6587
+ "release-passport",
6588
+ "release-passport-adopter-delivery-json",
6589
+ "release-passport-attachment-command",
6590
+ "release-passport-buildchain-self-kfd",
6591
+ "release-passport-evidence-command",
6592
+ "release-passport-evidence-jsons",
6593
+ "release-passport-evidence-path",
6594
+ "release-passport-impact-json",
6595
+ "release-passport-invariant-passport-command",
6596
+ "release-passport-invariant-passport-jsons",
6597
+ "release-passport-kfd-1-witness-jsons",
6598
+ "release-passport-kfd-2-claim-jsons",
6599
+ "release-passport-kfd-3-artifact-verify-command",
6600
+ "release-passport-kfd-3-artifact-witness-jsons",
6601
+ "release-passport-kfd-3-prebuild-witness-jsons",
6602
+ "release-passport-kfd-adopter-manifest-gate-json",
6603
+ "release-passport-kfd-adopter-manifest-json",
6604
+ "release-passport-kfd-product-gate-jsons",
6605
+ "release-passport-kfd-support-matrix-json",
6606
+ "release-passport-output-dir",
6607
+ "release-passport-platform-manifest-paths",
6608
+ "release-passport-product-name",
6609
+ "release-passport-v4-runtime-resume-evidence-json",
6610
+ "release-propagation-config-path",
6611
+ "required-artifact-count",
6612
+ "required-status-check",
6613
+ "resume-buildchain-runtime-sha",
6614
+ "resume-candidate-repository",
6615
+ "resume-candidate-run-id",
6616
+ "resume-expected-candidate-root",
6617
+ "resume-expected-candidate-runtime-sha",
6618
+ "resume-expected-source-tree",
6619
+ "resume-expected-workflow-file",
6620
+ "resume-expected-workflow-name",
6621
+ "resume-transaction-id",
6622
+ "runner-preset",
6623
+ "standalone-binary-distribution",
6624
+ "target-ref",
6625
+ "target-sha",
6626
+ "trusted-publishing",
6627
+ "universal-request-json"
6628
+ ],
6629
+ "reverseAuditSource": ".github/workflows"
6630
+ },
6631
+ {
6632
+ "id": "workflow:public-release-propagation",
6633
+ "name": "workflow:public-release-propagation",
6634
+ "kind": "workflow",
6635
+ "sourcePath": ".github/workflows/public-release-propagation.yml",
6636
+ "evidencePath": ".github/workflows/public-release-propagation.yml",
6637
+ "availability": "shipped",
6638
+ "visibility": "public",
6639
+ "participantFacing": true,
6640
+ "public": true,
6641
+ "inputCount": 20,
6642
+ "inputs": [
6643
+ "agent-work-context-json",
6644
+ "agent-work-mode",
6645
+ "buildchain-ref",
6646
+ "buildchain-repository",
6647
+ "downstream-base-ref",
6648
+ "downstream-branch",
6649
+ "downstream-prepare-command",
6650
+ "downstream-repository",
6651
+ "downstream-target",
6652
+ "downstream-update-command",
6653
+ "downstream-verify-command",
6654
+ "dry-run",
6655
+ "graph-json",
6656
+ "lock-path",
6657
+ "pr-body",
6658
+ "pr-title",
6659
+ "refresh-managed-readme-badges",
6660
+ "source-node",
6661
+ "universal-request-json",
6662
+ "upstream-release-json"
6663
+ ],
6664
+ "reverseAuditSource": ".github/workflows"
6665
+ },
6666
+ {
6667
+ "id": "workflow:public-release-signing-authority",
6668
+ "name": "workflow:public-release-signing-authority",
6669
+ "kind": "workflow",
6670
+ "sourcePath": ".github/workflows/public-release-signing-authority.yml",
6671
+ "evidencePath": ".github/workflows/public-release-signing-authority.yml",
6672
+ "availability": "shipped",
6673
+ "visibility": "public",
6674
+ "participantFacing": true,
6675
+ "public": true,
6676
+ "inputCount": 0,
6677
+ "inputs": [],
6678
+ "reverseAuditSource": ".github/workflows"
6679
+ },
6680
+ {
6681
+ "id": "workflow:public-release-tail",
6682
+ "name": "workflow:public-release-tail",
6683
+ "kind": "workflow",
6684
+ "sourcePath": ".github/workflows/public-release-tail.yml",
6685
+ "evidencePath": ".github/workflows/public-release-tail.yml",
6686
+ "availability": "shipped",
6687
+ "visibility": "public",
6688
+ "participantFacing": true,
6689
+ "public": true,
6690
+ "inputCount": 15,
6691
+ "inputs": [
6692
+ "buildchain-ref",
6693
+ "candidate-root",
6694
+ "capsule-contract",
6695
+ "capsule-path",
6696
+ "capsule-root",
6697
+ "declaration-path",
6698
+ "evidence-path",
6699
+ "execute",
6700
+ "provider-bindings-path",
6701
+ "rehearsal-authority-path",
6702
+ "rehearsal-capsule-path",
6703
+ "rehearsal-evidence-path",
6704
+ "rehearsal-mode",
6705
+ "state-path",
6706
+ "universal-request-json"
6707
+ ],
6708
+ "reverseAuditSource": ".github/workflows"
6709
+ },
6710
+ {
6711
+ "id": "workflow:public-release-web",
6712
+ "name": "workflow:public-release-web",
6713
+ "kind": "workflow",
6714
+ "sourcePath": ".github/workflows/public-release-web.yml",
6715
+ "evidencePath": ".github/workflows/public-release-web.yml",
6716
+ "availability": "shipped",
6717
+ "visibility": "public",
6718
+ "participantFacing": true,
6719
+ "public": true,
6720
+ "inputCount": 44,
6721
+ "inputs": [
6722
+ "artifact-path",
6723
+ "aws-region",
6724
+ "build-command",
6725
+ "buildchain-contract-compatibility-policy",
6726
+ "buildchain-contract-drift-issue-mode",
6727
+ "buildchain-contract-expected-channel",
6728
+ "buildchain-contract-expected-major",
6729
+ "buildchain-contract-lock-path",
6730
+ "buildchain-ref",
6731
+ "buildchain-repository",
6732
+ "fail-on-release-pr-error",
6733
+ "github-governance-receipt-json",
6734
+ "node-version",
6735
+ "preview-apply",
6736
+ "preview-aws-role-arn",
6737
+ "preview-cleanup-apply",
6738
+ "preview-comment",
6739
+ "preview-environment",
6740
+ "production-apply",
6741
+ "production-approved",
6742
+ "production-aws-role-arn",
6743
+ "production-environment",
6744
+ "production-release-app-client-id",
6745
+ "production-release-app-id",
6746
+ "production-release-branch-channel",
6747
+ "production-release-head-prefix",
6748
+ "production-release-label",
6749
+ "production-release-on-main",
6750
+ "production-release-pr-mode",
6751
+ "production-release-pr-token",
6752
+ "production-source-sha",
6753
+ "publication-admission-json",
6754
+ "publication-control-plane-audit-json",
6755
+ "publication-expected-json",
6756
+ "publication-gate-aggregate-json",
6757
+ "publication-runner-provenance-json",
6758
+ "publication-used-nonces-json",
6759
+ "release-feedback-actor-privacy",
6760
+ "staging-apply",
6761
+ "staging-aws-role-arn",
6762
+ "staging-environment",
6763
+ "universal-request-json",
6764
+ "verify-command",
6765
+ "working-directory"
6766
+ ],
6767
+ "reverseAuditSource": ".github/workflows"
6768
+ },
6769
+ {
6770
+ "id": "workflow:publication-artifact",
6771
+ "name": "workflow:publication-artifact",
6772
+ "kind": "workflow",
6773
+ "sourcePath": ".github/workflows/publication-artifact.yml",
6774
+ "evidencePath": ".github/workflows/publication-artifact.yml",
6775
+ "availability": "shipped",
6776
+ "visibility": "public",
6777
+ "participantFacing": true,
6778
+ "public": true,
6779
+ "inputCount": 24,
6780
+ "inputs": [
6781
+ "artifact-name",
6782
+ "artifact-paths",
6783
+ "artifact-retention-days",
6784
+ "build-command",
6785
+ "buildchain-alpha-contract-lock-path",
6786
+ "buildchain-contract-compatibility-policy",
6787
+ "buildchain-contract-drift-issue-mode",
6788
+ "buildchain-contract-lock-path",
6789
+ "buildchain-ref",
6790
+ "buildchain-repository",
6791
+ "buildchain-stable-contract-lock-path",
6792
+ "node-version",
6793
+ "package-name",
6794
+ "prepare-paper-package",
6795
+ "publish-dist-tag",
6796
+ "setup-node",
6797
+ "target-ref",
6798
+ "toolchain-command",
6799
+ "toolchain-digest",
6800
+ "toolchain-image",
6801
+ "toolchain-type",
6802
+ "universal-request-json",
6803
+ "verify-command",
6804
+ "working-directory"
6805
+ ],
6806
+ "reverseAuditSource": ".github/workflows"
6807
+ },
6808
+ {
6809
+ "id": "workflow:release-candidate-promote",
6810
+ "name": "workflow:release-candidate-promote",
6811
+ "kind": "workflow",
6812
+ "sourcePath": ".github/workflows/release-candidate-promote.yml",
6813
+ "evidencePath": ".github/workflows/release-candidate-promote.yml",
6814
+ "availability": "shipped",
6815
+ "visibility": "public",
6816
+ "participantFacing": true,
6817
+ "public": true,
6818
+ "inputCount": 107,
6819
+ "inputs": [
6820
+ "allow-repository",
6821
+ "artifact-name",
6822
+ "artifact-patterns",
6823
+ "branch-protection-bypass-apps",
6824
+ "branch-protection-bypass-teams",
6825
+ "branch-protection-bypass-users",
6826
+ "buildchain-alpha-contract-lock-path",
6827
+ "buildchain-channel",
6828
+ "buildchain-contract-compatibility-policy",
6829
+ "buildchain-contract-drift-issue-mode",
6830
+ "buildchain-contract-lock-path",
6831
+ "buildchain-ref",
6832
+ "buildchain-repository",
6833
+ "buildchain-stable-contract-lock-path",
6834
+ "channel",
6835
+ "declarative-release-tail",
6836
+ "dry-run",
6837
+ "github-artifact-attestation-environment",
6838
+ "github-artifact-attestation-policy-json",
6839
+ "github-artifact-attestation-retention-days",
6840
+ "github-governance-receipt-json",
6841
+ "github-release",
6842
+ "github-release-notes",
6843
+ "github-release-payload-patterns",
6844
+ "github-release-title",
6845
+ "package-manager",
6846
+ "provider-failure-after-capability",
6847
+ "publication-admission-json",
6848
+ "publication-auto-admission",
6849
+ "publication-auto-no-gate",
6850
+ "publication-commit-command",
6851
+ "publication-commit-evidence-path",
6852
+ "publication-consumer-predicate-id",
6853
+ "publication-consumer-qualification-command",
6854
+ "publication-consumer-qualification-controller-sha",
6855
+ "publication-control-plane-audit-json",
6856
+ "publication-expected-json",
6857
+ "publication-gate-aggregate-json",
6858
+ "publication-gate-command",
6859
+ "publication-gate-controller-sha",
6860
+ "publication-package-name",
6861
+ "publication-product",
6862
+ "publication-publisher-workflow-path",
6863
+ "publication-runner-provenance-json",
6864
+ "publication-target",
6865
+ "publication-used-nonces-json",
6866
+ "publication-used-qualification-nonces-json",
6867
+ "publish-artifact-kind",
6868
+ "publish-command",
6869
+ "publish-dist-tag",
6870
+ "publish-mode",
6871
+ "publish-package-main",
6872
+ "publish-package-set-order",
6873
+ "publish-rematerialize-on-resume",
6874
+ "publish-required-artifacts-json",
6875
+ "publish-target",
6876
+ "publish-transaction-override",
6877
+ "release-activation-command",
6878
+ "release-activation-receipt-set-path",
6879
+ "release-candidate-family-assignment-id",
6880
+ "release-candidate-family-evidence-required",
6881
+ "release-candidate-family-evidence-root",
6882
+ "release-candidate-family-initiative-id",
6883
+ "release-candidate-wait-seconds",
6884
+ "release-candidate-workflow-file",
6885
+ "release-candidate-workflow-name",
6886
+ "release-passport",
6887
+ "release-passport-adopter-delivery-json",
6888
+ "release-passport-attachment-command",
6889
+ "release-passport-buildchain-self-kfd",
6890
+ "release-passport-evidence-command",
6891
+ "release-passport-evidence-jsons",
6892
+ "release-passport-evidence-path",
6893
+ "release-passport-impact-json",
6894
+ "release-passport-invariant-passport-command",
6895
+ "release-passport-invariant-passport-jsons",
6896
+ "release-passport-kfd-1-witness-jsons",
6897
+ "release-passport-kfd-2-claim-jsons",
6898
+ "release-passport-kfd-3-artifact-verify-command",
6899
+ "release-passport-kfd-3-artifact-witness-jsons",
6900
+ "release-passport-kfd-3-prebuild-witness-jsons",
6901
+ "release-passport-kfd-adopter-manifest-gate-json",
6902
+ "release-passport-kfd-adopter-manifest-json",
6903
+ "release-passport-kfd-product-gate-jsons",
6904
+ "release-passport-kfd-support-matrix-json",
6905
+ "release-passport-output-dir",
6906
+ "release-passport-platform-manifest-paths",
6907
+ "release-passport-product-name",
6908
+ "release-passport-v4-runtime-resume-evidence-json",
6909
+ "release-propagation-config-path",
6910
+ "required-artifact-count",
6911
+ "required-status-check",
6912
+ "resume-buildchain-runtime-sha",
6913
+ "resume-candidate-repository",
6914
+ "resume-candidate-run-id",
6915
+ "resume-expected-candidate-root",
6916
+ "resume-expected-candidate-runtime-sha",
6917
+ "resume-expected-source-tree",
6918
+ "resume-expected-workflow-file",
6919
+ "resume-expected-workflow-name",
6920
+ "resume-transaction-id",
6921
+ "runner-preset",
6922
+ "standalone-binary-distribution",
6923
+ "target-ref",
6924
+ "target-sha",
6925
+ "trusted-publishing",
6926
+ "universal-request-json"
6927
+ ],
4766
6928
  "reverseAuditSource": ".github/workflows"
4767
6929
  },
4768
6930
  {
4769
- "id": "workflow:buildchain-patrol-monthly",
4770
- "name": "workflow:buildchain-patrol-monthly",
6931
+ "id": "workflow:release-governance-reconcile",
6932
+ "name": "workflow:release-governance-reconcile",
4771
6933
  "kind": "workflow",
4772
- "sourcePath": ".github/workflows/buildchain-patrol-monthly.yml",
4773
- "evidencePath": ".github/workflows/buildchain-patrol-monthly.yml",
6934
+ "sourcePath": ".github/workflows/release-governance-reconcile.yml",
6935
+ "evidencePath": ".github/workflows/release-governance-reconcile.yml",
4774
6936
  "availability": "shipped",
4775
6937
  "visibility": "public",
4776
6938
  "participantFacing": true,
4777
6939
  "public": true,
4778
- "inputCount": 0,
4779
- "inputs": [],
6940
+ "inputCount": 5,
6941
+ "inputs": [
6942
+ "apply",
6943
+ "branch",
6944
+ "buildchain-ref",
6945
+ "candidate-sha",
6946
+ "universal-request-json"
6947
+ ],
4780
6948
  "reverseAuditSource": ".github/workflows"
4781
6949
  },
4782
6950
  {
4783
- "id": "workflow:buildchain-patrol-weekly",
4784
- "name": "workflow:buildchain-patrol-weekly",
6951
+ "id": "workflow:release-propagation",
6952
+ "name": "workflow:release-propagation",
4785
6953
  "kind": "workflow",
4786
- "sourcePath": ".github/workflows/buildchain-patrol-weekly.yml",
4787
- "evidencePath": ".github/workflows/buildchain-patrol-weekly.yml",
6954
+ "sourcePath": ".github/workflows/release-propagation.yml",
6955
+ "evidencePath": ".github/workflows/release-propagation.yml",
4788
6956
  "availability": "shipped",
4789
6957
  "visibility": "public",
4790
6958
  "participantFacing": true,
4791
6959
  "public": true,
4792
- "inputCount": 0,
4793
- "inputs": [],
6960
+ "inputCount": 20,
6961
+ "inputs": [
6962
+ "agent-work-context-json",
6963
+ "agent-work-mode",
6964
+ "buildchain-ref",
6965
+ "buildchain-repository",
6966
+ "downstream-base-ref",
6967
+ "downstream-branch",
6968
+ "downstream-prepare-command",
6969
+ "downstream-repository",
6970
+ "downstream-target",
6971
+ "downstream-update-command",
6972
+ "downstream-verify-command",
6973
+ "dry-run",
6974
+ "graph-json",
6975
+ "lock-path",
6976
+ "pr-body",
6977
+ "pr-title",
6978
+ "refresh-managed-readme-badges",
6979
+ "source-node",
6980
+ "universal-request-json",
6981
+ "upstream-release-json"
6982
+ ],
4794
6983
  "reverseAuditSource": ".github/workflows"
4795
6984
  },
4796
6985
  {
4797
- "id": "workflow:buildchain-patrol",
4798
- "name": "workflow:buildchain-patrol",
6986
+ "id": "workflow:release-tail",
6987
+ "name": "workflow:release-tail",
4799
6988
  "kind": "workflow",
4800
- "sourcePath": ".github/workflows/buildchain-patrol.yml",
4801
- "evidencePath": ".github/workflows/buildchain-patrol.yml",
6989
+ "sourcePath": ".github/workflows/release-tail.yml",
6990
+ "evidencePath": ".github/workflows/release-tail.yml",
4802
6991
  "availability": "shipped",
4803
6992
  "visibility": "public",
4804
6993
  "participantFacing": true,
4805
6994
  "public": true,
4806
- "inputCount": 17,
6995
+ "inputCount": 15,
4807
6996
  "inputs": [
4808
- "allowed-head-prefixes",
4809
- "block-labels",
4810
6997
  "buildchain-ref",
4811
- "buildchain-repository",
4812
- "cadence",
4813
- "capabilities",
4814
- "dry-run",
4815
- "landing-mode",
4816
- "max-actions",
4817
- "merge-method",
4818
- "mode",
4819
- "ready-label",
4820
- "require-approval",
4821
- "required-status-checks",
4822
- "same-repository-only",
4823
- "target-branch",
6998
+ "candidate-root",
6999
+ "capsule-contract",
7000
+ "capsule-path",
7001
+ "capsule-root",
7002
+ "declaration-path",
7003
+ "evidence-path",
7004
+ "execute",
7005
+ "provider-bindings-path",
7006
+ "rehearsal-authority-path",
7007
+ "rehearsal-capsule-path",
7008
+ "rehearsal-evidence-path",
7009
+ "rehearsal-mode",
7010
+ "state-path",
4824
7011
  "universal-request-json"
4825
7012
  ],
4826
7013
  "reverseAuditSource": ".github/workflows"
4827
7014
  },
4828
7015
  {
4829
- "id": "workflow:buildchain-ref-promotion-recovery",
4830
- "name": "workflow:buildchain-ref-promotion-recovery",
7016
+ "id": "workflow:self-build-adopter-dogfood",
7017
+ "name": "workflow:self-build-adopter-dogfood",
4831
7018
  "kind": "workflow",
4832
- "sourcePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
4833
- "evidencePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
7019
+ "sourcePath": ".github/workflows/self-build-adopter-dogfood.yml",
7020
+ "evidencePath": ".github/workflows/self-build-adopter-dogfood.yml",
4834
7021
  "availability": "shipped",
4835
7022
  "visibility": "public",
4836
7023
  "participantFacing": true,
@@ -4840,11 +7027,11 @@
4840
7027
  "reverseAuditSource": ".github/workflows"
4841
7028
  },
4842
7029
  {
4843
- "id": "workflow:buildchain-ref-promotion",
4844
- "name": "workflow:buildchain-ref-promotion",
7030
+ "id": "workflow:self-build-alpha-dogfood",
7031
+ "name": "workflow:self-build-alpha-dogfood",
4845
7032
  "kind": "workflow",
4846
- "sourcePath": ".github/workflows/buildchain-ref-promotion.yml",
4847
- "evidencePath": ".github/workflows/buildchain-ref-promotion.yml",
7033
+ "sourcePath": ".github/workflows/self-build-alpha-dogfood.yml",
7034
+ "evidencePath": ".github/workflows/self-build-alpha-dogfood.yml",
4848
7035
  "availability": "shipped",
4849
7036
  "visibility": "public",
4850
7037
  "participantFacing": true,
@@ -4854,11 +7041,11 @@
4854
7041
  "reverseAuditSource": ".github/workflows"
4855
7042
  },
4856
7043
  {
4857
- "id": "workflow:buildchain-stable-candidate-patrol",
4858
- "name": "workflow:buildchain-stable-candidate-patrol",
7044
+ "id": "workflow:self-build-binary-distribution",
7045
+ "name": "workflow:self-build-binary-distribution",
4859
7046
  "kind": "workflow",
4860
- "sourcePath": ".github/workflows/buildchain-stable-candidate-patrol.yml",
4861
- "evidencePath": ".github/workflows/buildchain-stable-candidate-patrol.yml",
7047
+ "sourcePath": ".github/workflows/self-build-binary-distribution.yml",
7048
+ "evidencePath": ".github/workflows/self-build-binary-distribution.yml",
4862
7049
  "availability": "shipped",
4863
7050
  "visibility": "public",
4864
7051
  "participantFacing": true,
@@ -4868,11 +7055,11 @@
4868
7055
  "reverseAuditSource": ".github/workflows"
4869
7056
  },
4870
7057
  {
4871
- "id": "workflow:buildchain-stable-candidate-qualification",
4872
- "name": "workflow:buildchain-stable-candidate-qualification",
7058
+ "id": "workflow:self-build-candidate-lab",
7059
+ "name": "workflow:self-build-candidate-lab",
4873
7060
  "kind": "workflow",
4874
- "sourcePath": ".github/workflows/buildchain-stable-candidate-qualification.yml",
4875
- "evidencePath": ".github/workflows/buildchain-stable-candidate-qualification.yml",
7061
+ "sourcePath": ".github/workflows/self-build-candidate-lab.yml",
7062
+ "evidencePath": ".github/workflows/self-build-candidate-lab.yml",
4876
7063
  "availability": "shipped",
4877
7064
  "visibility": "public",
4878
7065
  "participantFacing": true,
@@ -4882,11 +7069,11 @@
4882
7069
  "reverseAuditSource": ".github/workflows"
4883
7070
  },
4884
7071
  {
4885
- "id": "workflow:candidate-lab",
4886
- "name": "workflow:candidate-lab",
7072
+ "id": "workflow:self-build-demo-dogfood",
7073
+ "name": "workflow:self-build-demo-dogfood",
4887
7074
  "kind": "workflow",
4888
- "sourcePath": ".github/workflows/candidate-lab.yml",
4889
- "evidencePath": ".github/workflows/candidate-lab.yml",
7075
+ "sourcePath": ".github/workflows/self-build-demo-dogfood.yml",
7076
+ "evidencePath": ".github/workflows/self-build-demo-dogfood.yml",
4890
7077
  "availability": "shipped",
4891
7078
  "visibility": "public",
4892
7079
  "participantFacing": true,
@@ -4896,127 +7083,39 @@
4896
7083
  "reverseAuditSource": ".github/workflows"
4897
7084
  },
4898
7085
  {
4899
- "id": "workflow:check",
4900
- "name": "workflow:check",
4901
- "kind": "workflow",
4902
- "sourcePath": ".github/workflows/check.yml",
4903
- "evidencePath": ".github/workflows/check.yml",
4904
- "availability": "shipped",
4905
- "visibility": "public",
4906
- "participantFacing": true,
4907
- "public": true,
4908
- "inputCount": 13,
4909
- "inputs": [
4910
- "buildchain-ref",
4911
- "buildchain-repository",
4912
- "mode",
4913
- "node-version",
4914
- "require-version-state",
4915
- "source-proof-closure-paths-json",
4916
- "source-proof-dependency-paths-json",
4917
- "source-proof-policy-paths-json",
4918
- "source-proof-required-contexts-json",
4919
- "source-proof-reuse",
4920
- "universal-request-json",
4921
- "upload-artifacts",
4922
- "working-directory"
4923
- ],
4924
- "reverseAuditSource": ".github/workflows"
4925
- },
4926
- {
4927
- "id": "workflow:dev-alpha-candidate-patrol",
4928
- "name": "workflow:dev-alpha-candidate-patrol",
4929
- "kind": "workflow",
4930
- "sourcePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
4931
- "evidencePath": ".github/workflows/dev-alpha-candidate-patrol.yml",
4932
- "availability": "shipped",
4933
- "visibility": "public",
4934
- "participantFacing": true,
4935
- "public": true,
4936
- "inputCount": 16,
4937
- "inputs": [
4938
- "alpha-workflow-path",
4939
- "auto-merge",
4940
- "buildchain-ref",
4941
- "buildchain-repository",
4942
- "create-pull-request",
4943
- "dev-workflow-path",
4944
- "dry-run",
4945
- "max-age-seconds",
4946
- "merge-method",
4947
- "pull-request-body-prefix",
4948
- "pull-request-body-prefix-renderer",
4949
- "reactivation-authorized",
4950
- "settlement-authorized",
4951
- "source-branch",
4952
- "target-branch",
4953
- "universal-request-json"
4954
- ],
4955
- "reverseAuditSource": ".github/workflows"
4956
- },
4957
- {
4958
- "id": "workflow:dev-delivery-warrant-cancel",
4959
- "name": "workflow:dev-delivery-warrant-cancel",
7086
+ "id": "workflow:self-build-demo-media-qualification",
7087
+ "name": "workflow:self-build-demo-media-qualification",
4960
7088
  "kind": "workflow",
4961
- "sourcePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
4962
- "evidencePath": ".github/workflows/dev-delivery-warrant-cancel.yml",
7089
+ "sourcePath": ".github/workflows/self-build-demo-media-qualification.yml",
7090
+ "evidencePath": ".github/workflows/self-build-demo-media-qualification.yml",
4963
7091
  "availability": "shipped",
4964
7092
  "visibility": "public",
4965
7093
  "participantFacing": true,
4966
7094
  "public": true,
4967
- "inputCount": 13,
4968
- "inputs": [
4969
- "buildchain-ref",
4970
- "buildchain-repository",
4971
- "event-action",
4972
- "expected-candidate-id",
4973
- "expected-old-state-root",
4974
- "expected-pr-number",
4975
- "expected-source-head-sha",
4976
- "observed-source-head-sha",
4977
- "outcome",
4978
- "reason",
4979
- "target-branch",
4980
- "terminal-evidence-root",
4981
- "universal-request-json"
4982
- ],
7095
+ "inputCount": 0,
7096
+ "inputs": [],
4983
7097
  "reverseAuditSource": ".github/workflows"
4984
7098
  },
4985
7099
  {
4986
- "id": "workflow:dev-delivery-warrant-close",
4987
- "name": "workflow:dev-delivery-warrant-close",
7100
+ "id": "workflow:self-build-fixture",
7101
+ "name": "workflow:self-build-fixture",
4988
7102
  "kind": "workflow",
4989
- "sourcePath": ".github/workflows/dev-delivery-warrant-close.yml",
4990
- "evidencePath": ".github/workflows/dev-delivery-warrant-close.yml",
7103
+ "sourcePath": ".github/workflows/self-build-fixture.yml",
7104
+ "evidencePath": ".github/workflows/self-build-fixture.yml",
4991
7105
  "availability": "shipped",
4992
7106
  "visibility": "public",
4993
7107
  "participantFacing": true,
4994
7108
  "public": true,
4995
- "inputCount": 14,
4996
- "inputs": [
4997
- "buildchain-ref",
4998
- "buildchain-repository",
4999
- "current-base-sha",
5000
- "expected-head-sha",
5001
- "expected-pr-number",
5002
- "merge-group-head-sha",
5003
- "merge-group-tree-sha",
5004
- "outcome",
5005
- "reason",
5006
- "replay-tree-sha",
5007
- "required-context-roots-json",
5008
- "target-branch",
5009
- "terminal-evidence-root",
5010
- "universal-request-json"
5011
- ],
7109
+ "inputCount": 0,
7110
+ "inputs": [],
5012
7111
  "reverseAuditSource": ".github/workflows"
5013
7112
  },
5014
7113
  {
5015
- "id": "workflow:dev-merge-queue-governance",
5016
- "name": "workflow:dev-merge-queue-governance",
7114
+ "id": "workflow:self-build-public-consumer-dogfood",
7115
+ "name": "workflow:self-build-public-consumer-dogfood",
5017
7116
  "kind": "workflow",
5018
- "sourcePath": ".github/workflows/dev-merge-queue-governance.yml",
5019
- "evidencePath": ".github/workflows/dev-merge-queue-governance.yml",
7117
+ "sourcePath": ".github/workflows/self-build-public-consumer-dogfood.yml",
7118
+ "evidencePath": ".github/workflows/self-build-public-consumer-dogfood.yml",
5020
7119
  "availability": "shipped",
5021
7120
  "visibility": "public",
5022
7121
  "participantFacing": true,
@@ -5026,97 +7125,39 @@
5026
7125
  "reverseAuditSource": ".github/workflows"
5027
7126
  },
5028
7127
  {
5029
- "id": "workflow:dev-pr-auto-merge",
5030
- "name": "workflow:dev-pr-auto-merge",
7128
+ "id": "workflow:self-build-release-verify-compat",
7129
+ "name": "workflow:self-build-release-verify-compat",
5031
7130
  "kind": "workflow",
5032
- "sourcePath": ".github/workflows/dev-pr-auto-merge.yml",
5033
- "evidencePath": ".github/workflows/dev-pr-auto-merge.yml",
7131
+ "sourcePath": ".github/workflows/self-build-release-verify-compat.yml",
7132
+ "evidencePath": ".github/workflows/self-build-release-verify-compat.yml",
5034
7133
  "availability": "shipped",
5035
7134
  "visibility": "public",
5036
7135
  "participantFacing": true,
5037
7136
  "public": true,
5038
- "inputCount": 45,
5039
- "inputs": [
5040
- "active-lease-context",
5041
- "affected-paths-json",
5042
- "allowed-head-prefixes",
5043
- "assignment-root",
5044
- "block-labels",
5045
- "buildchain-ref",
5046
- "buildchain-repository",
5047
- "closure-root",
5048
- "defer-landing",
5049
- "delivery-class",
5050
- "delivery-priority",
5051
- "delivery-warrant-mode",
5052
- "dependency-root",
5053
- "diagnostic-context",
5054
- "dry-run",
5055
- "environment-root",
5056
- "expected-head-sha",
5057
- "expected-pr-number",
5058
- "handoff-workflow-id",
5059
- "initiative-root",
5060
- "landing-mode",
5061
- "legacy-active-owner-binding-json",
5062
- "max-merges",
5063
- "merge-method",
5064
- "native-command",
5065
- "native-command-root",
5066
- "native-heartbeat-seconds",
5067
- "native-proof-json",
5068
- "plan-root",
5069
- "project-cut-proof-json",
5070
- "queue-admission-context",
5071
- "ready-label",
5072
- "release-blocker-priority-json",
5073
- "require-approval",
5074
- "required-status-checks",
5075
- "same-repository-only",
5076
- "shard-evidence-roots-json",
5077
- "source-identity-root",
5078
- "source-patch-root",
5079
- "source-workflow-id",
5080
- "source-workflow-run-id",
5081
- "target-branch",
5082
- "toolchain-root",
5083
- "universal-request-json",
5084
- "warrant-lease-seconds"
5085
- ],
7137
+ "inputCount": 0,
7138
+ "inputs": [],
5086
7139
  "reverseAuditSource": ".github/workflows"
5087
7140
  },
5088
7141
  {
5089
- "id": "workflow:dev-qualification-patrol",
5090
- "name": "workflow:dev-qualification-patrol",
7142
+ "id": "workflow:self-build-stable-candidate-qualification",
7143
+ "name": "workflow:self-build-stable-candidate-qualification",
5091
7144
  "kind": "workflow",
5092
- "sourcePath": ".github/workflows/dev-qualification-patrol.yml",
5093
- "evidencePath": ".github/workflows/dev-qualification-patrol.yml",
7145
+ "sourcePath": ".github/workflows/self-build-stable-candidate-qualification.yml",
7146
+ "evidencePath": ".github/workflows/self-build-stable-candidate-qualification.yml",
5094
7147
  "availability": "shipped",
5095
7148
  "visibility": "public",
5096
7149
  "participantFacing": true,
5097
7150
  "public": true,
5098
- "inputCount": 11,
5099
- "inputs": [
5100
- "buildchain-ref",
5101
- "buildchain-repository",
5102
- "dev-workflow-path",
5103
- "dispatch-inputs-json",
5104
- "dry-run",
5105
- "max-attempts",
5106
- "mutation-authorized",
5107
- "preflight-workflow-path",
5108
- "priority-workflows-json",
5109
- "source-branch",
5110
- "universal-request-json"
5111
- ],
7151
+ "inputCount": 0,
7152
+ "inputs": [],
5112
7153
  "reverseAuditSource": ".github/workflows"
5113
7154
  },
5114
7155
  {
5115
- "id": "workflow:engineering-housekeeper-daily",
5116
- "name": "workflow:engineering-housekeeper-daily",
7156
+ "id": "workflow:self-build-verify",
7157
+ "name": "workflow:self-build-verify",
5117
7158
  "kind": "workflow",
5118
- "sourcePath": ".github/workflows/engineering-housekeeper-daily.yml",
5119
- "evidencePath": ".github/workflows/engineering-housekeeper-daily.yml",
7159
+ "sourcePath": ".github/workflows/self-build-verify.yml",
7160
+ "evidencePath": ".github/workflows/self-build-verify.yml",
5120
7161
  "availability": "shipped",
5121
7162
  "visibility": "public",
5122
7163
  "participantFacing": true,
@@ -5126,11 +7167,11 @@
5126
7167
  "reverseAuditSource": ".github/workflows"
5127
7168
  },
5128
7169
  {
5129
- "id": "workflow:engineering-housekeeper-monthly",
5130
- "name": "workflow:engineering-housekeeper-monthly",
7170
+ "id": "workflow:self-ops-bootstrap-dogfood",
7171
+ "name": "workflow:self-ops-bootstrap-dogfood",
5131
7172
  "kind": "workflow",
5132
- "sourcePath": ".github/workflows/engineering-housekeeper-monthly.yml",
5133
- "evidencePath": ".github/workflows/engineering-housekeeper-monthly.yml",
7173
+ "sourcePath": ".github/workflows/self-ops-bootstrap-dogfood.yml",
7174
+ "evidencePath": ".github/workflows/self-ops-bootstrap-dogfood.yml",
5134
7175
  "availability": "shipped",
5135
7176
  "visibility": "public",
5136
7177
  "participantFacing": true,
@@ -5140,11 +7181,11 @@
5140
7181
  "reverseAuditSource": ".github/workflows"
5141
7182
  },
5142
7183
  {
5143
- "id": "workflow:engineering-housekeeper-weekly",
5144
- "name": "workflow:engineering-housekeeper-weekly",
7184
+ "id": "workflow:self-ops-dev-delivery",
7185
+ "name": "workflow:self-ops-dev-delivery",
5145
7186
  "kind": "workflow",
5146
- "sourcePath": ".github/workflows/engineering-housekeeper-weekly.yml",
5147
- "evidencePath": ".github/workflows/engineering-housekeeper-weekly.yml",
7187
+ "sourcePath": ".github/workflows/self-ops-dev-delivery.yml",
7188
+ "evidencePath": ".github/workflows/self-ops-dev-delivery.yml",
5148
7189
  "availability": "shipped",
5149
7190
  "visibility": "public",
5150
7191
  "participantFacing": true,
@@ -5154,70 +7195,39 @@
5154
7195
  "reverseAuditSource": ".github/workflows"
5155
7196
  },
5156
7197
  {
5157
- "id": "workflow:engineering-housekeeper",
5158
- "name": "workflow:engineering-housekeeper",
7198
+ "id": "workflow:self-ops-governance-audit",
7199
+ "name": "workflow:self-ops-governance-audit",
5159
7200
  "kind": "workflow",
5160
- "sourcePath": ".github/workflows/engineering-housekeeper.yml",
5161
- "evidencePath": ".github/workflows/engineering-housekeeper.yml",
7201
+ "sourcePath": ".github/workflows/self-ops-governance-audit.yml",
7202
+ "evidencePath": ".github/workflows/self-ops-governance-audit.yml",
5162
7203
  "availability": "shipped",
5163
7204
  "visibility": "public",
5164
7205
  "participantFacing": true,
5165
7206
  "public": true,
5166
- "inputCount": 15,
5167
- "inputs": [
5168
- "apply-enabled",
5169
- "artifact-prefix",
5170
- "artifact-retention-days",
5171
- "buildchain-ref",
5172
- "buildchain-repository",
5173
- "max-actions",
5174
- "mode",
5175
- "protected-patterns",
5176
- "repository",
5177
- "retained-patterns",
5178
- "stale-days",
5179
- "stale-pull-request-label",
5180
- "target-branch",
5181
- "temporary-branch-patterns",
5182
- "universal-request-json"
5183
- ],
7207
+ "inputCount": 0,
7208
+ "inputs": [],
5184
7209
  "reverseAuditSource": ".github/workflows"
5185
7210
  },
5186
7211
  {
5187
- "id": "workflow:github-artifact-attestation",
5188
- "name": "workflow:github-artifact-attestation",
7212
+ "id": "workflow:self-ops-housekeeping-daily",
7213
+ "name": "workflow:self-ops-housekeeping-daily",
5189
7214
  "kind": "workflow",
5190
- "sourcePath": ".github/workflows/github-artifact-attestation.yml",
5191
- "evidencePath": ".github/workflows/github-artifact-attestation.yml",
7215
+ "sourcePath": ".github/workflows/self-ops-housekeeping-daily.yml",
7216
+ "evidencePath": ".github/workflows/self-ops-housekeeping-daily.yml",
5192
7217
  "availability": "shipped",
5193
7218
  "visibility": "public",
5194
7219
  "participantFacing": true,
5195
7220
  "public": true,
5196
- "inputCount": 14,
5197
- "inputs": [
5198
- "buildchain-ref",
5199
- "environment",
5200
- "evidence-artifact-name",
5201
- "evidence-run-id",
5202
- "platform-manifest-artifact-name",
5203
- "platform-manifest-relative-path",
5204
- "policy-json",
5205
- "release-passport-artifact-name",
5206
- "release-passport-relative-path",
5207
- "retention-days",
5208
- "source-sha",
5209
- "subject-artifact-name",
5210
- "subject-relative-path",
5211
- "universal-request-json"
5212
- ],
7221
+ "inputCount": 0,
7222
+ "inputs": [],
5213
7223
  "reverseAuditSource": ".github/workflows"
5214
7224
  },
5215
7225
  {
5216
- "id": "workflow:github-governance-audit",
5217
- "name": "workflow:github-governance-audit",
7226
+ "id": "workflow:self-ops-housekeeping-monthly",
7227
+ "name": "workflow:self-ops-housekeeping-monthly",
5218
7228
  "kind": "workflow",
5219
- "sourcePath": ".github/workflows/github-governance-audit.yml",
5220
- "evidencePath": ".github/workflows/github-governance-audit.yml",
7229
+ "sourcePath": ".github/workflows/self-ops-housekeeping-monthly.yml",
7230
+ "evidencePath": ".github/workflows/self-ops-housekeeping-monthly.yml",
5221
7231
  "availability": "shipped",
5222
7232
  "visibility": "public",
5223
7233
  "participantFacing": true,
@@ -5227,11 +7237,11 @@
5227
7237
  "reverseAuditSource": ".github/workflows"
5228
7238
  },
5229
7239
  {
5230
- "id": "workflow:npm-publish",
5231
- "name": "workflow:npm-publish",
7240
+ "id": "workflow:self-ops-housekeeping-weekly",
7241
+ "name": "workflow:self-ops-housekeeping-weekly",
5232
7242
  "kind": "workflow",
5233
- "sourcePath": ".github/workflows/npm-publish.yml",
5234
- "evidencePath": ".github/workflows/npm-publish.yml",
7243
+ "sourcePath": ".github/workflows/self-ops-housekeeping-weekly.yml",
7244
+ "evidencePath": ".github/workflows/self-ops-housekeeping-weekly.yml",
5235
7245
  "availability": "shipped",
5236
7246
  "visibility": "public",
5237
7247
  "participantFacing": true,
@@ -5241,385 +7251,137 @@
5241
7251
  "reverseAuditSource": ".github/workflows"
5242
7252
  },
5243
7253
  {
5244
- "id": "workflow:paper-release-sealed",
5245
- "name": "workflow:paper-release-sealed",
7254
+ "id": "workflow:self-ops-merge-queue",
7255
+ "name": "workflow:self-ops-merge-queue",
5246
7256
  "kind": "workflow",
5247
- "sourcePath": ".github/workflows/paper-release-sealed.yml",
5248
- "evidencePath": ".github/workflows/paper-release-sealed.yml",
7257
+ "sourcePath": ".github/workflows/self-ops-merge-queue.yml",
7258
+ "evidencePath": ".github/workflows/self-ops-merge-queue.yml",
5249
7259
  "availability": "shipped",
5250
7260
  "visibility": "public",
5251
7261
  "participantFacing": true,
5252
7262
  "public": true,
5253
- "inputCount": 27,
5254
- "inputs": [
5255
- "artifact-name",
5256
- "artifact-paths",
5257
- "artifact-retention-days",
5258
- "branch-protection-bypass-apps",
5259
- "branch-protection-bypass-teams",
5260
- "branch-protection-bypass-users",
5261
- "buildchain-contract-lock-path",
5262
- "buildchain-ref",
5263
- "buildchain-repository",
5264
- "dry-run",
5265
- "github-governance-receipt-json",
5266
- "github-release",
5267
- "github-release-notes",
5268
- "github-release-title",
5269
- "package-name",
5270
- "publish-dist-tag",
5271
- "publisher-workflow-path",
5272
- "release-passport-impact-json",
5273
- "release-passport-output-dir",
5274
- "release-passport-product-name",
5275
- "required-status-check",
5276
- "target-ref",
5277
- "target-sha",
5278
- "toolchain-type",
5279
- "universal-request-json",
5280
- "verify-command",
5281
- "working-directory"
5282
- ],
7263
+ "inputCount": 0,
7264
+ "inputs": [],
5283
7265
  "reverseAuditSource": ".github/workflows"
5284
7266
  },
5285
7267
  {
5286
- "id": "workflow:paper-release",
5287
- "name": "workflow:paper-release",
7268
+ "id": "workflow:self-ops-patrol-daily",
7269
+ "name": "workflow:self-ops-patrol-daily",
5288
7270
  "kind": "workflow",
5289
- "sourcePath": ".github/workflows/paper-release.yml",
5290
- "evidencePath": ".github/workflows/paper-release.yml",
7271
+ "sourcePath": ".github/workflows/self-ops-patrol-daily.yml",
7272
+ "evidencePath": ".github/workflows/self-ops-patrol-daily.yml",
5291
7273
  "availability": "shipped",
5292
7274
  "visibility": "public",
5293
7275
  "participantFacing": true,
5294
7276
  "public": true,
5295
- "inputCount": 39,
5296
- "inputs": [
5297
- "artifact-name",
5298
- "artifact-retention-days",
5299
- "branch-protection-bypass-apps",
5300
- "branch-protection-bypass-teams",
5301
- "branch-protection-bypass-users",
5302
- "build-command",
5303
- "buildchain-contract-compatibility-policy",
5304
- "buildchain-contract-drift-issue-mode",
5305
- "buildchain-contract-lock-path",
5306
- "buildchain-ref",
5307
- "buildchain-repository",
5308
- "dry-run",
5309
- "github-governance-receipt-json",
5310
- "github-release",
5311
- "github-release-notes",
5312
- "github-release-title",
5313
- "node-version",
5314
- "package-name",
5315
- "publication-admission-json",
5316
- "publication-control-plane-audit-json",
5317
- "publication-expected-json",
5318
- "publication-runner-provenance-json",
5319
- "publication-used-nonces-json",
5320
- "publish-dist-tag",
5321
- "publish-package-set-order",
5322
- "release-passport-impact-json",
5323
- "release-passport-output-dir",
5324
- "release-passport-product-name",
5325
- "required-status-check",
5326
- "setup-node",
5327
- "target-ref",
5328
- "target-sha",
5329
- "toolchain-command",
5330
- "toolchain-digest",
5331
- "toolchain-image",
5332
- "toolchain-type",
5333
- "universal-request-json",
5334
- "verify-command",
5335
- "working-directory"
5336
- ],
7277
+ "inputCount": 0,
7278
+ "inputs": [],
5337
7279
  "reverseAuditSource": ".github/workflows"
5338
7280
  },
5339
7281
  {
5340
- "id": "workflow:patrol-daily",
5341
- "name": "workflow:patrol-daily",
7282
+ "id": "workflow:self-ops-patrol-monthly",
7283
+ "name": "workflow:self-ops-patrol-monthly",
5342
7284
  "kind": "workflow",
5343
- "sourcePath": ".github/workflows/patrol-daily.yml",
5344
- "evidencePath": ".github/workflows/patrol-daily.yml",
7285
+ "sourcePath": ".github/workflows/self-ops-patrol-monthly.yml",
7286
+ "evidencePath": ".github/workflows/self-ops-patrol-monthly.yml",
5345
7287
  "availability": "shipped",
5346
7288
  "visibility": "public",
5347
7289
  "participantFacing": true,
5348
7290
  "public": true,
5349
- "inputCount": 14,
5350
- "inputs": [
5351
- "allowed-head-prefixes",
5352
- "block-labels",
5353
- "buildchain-ref",
5354
- "buildchain-repository",
5355
- "dry-run",
5356
- "landing-mode",
5357
- "max-actions",
5358
- "merge-method",
5359
- "ready-label",
5360
- "require-approval",
5361
- "required-status-checks",
5362
- "same-repository-only",
5363
- "target-branch",
5364
- "universal-request-json"
5365
- ],
7291
+ "inputCount": 0,
7292
+ "inputs": [],
5366
7293
  "reverseAuditSource": ".github/workflows"
5367
7294
  },
5368
7295
  {
5369
- "id": "workflow:patrol-monthly",
5370
- "name": "workflow:patrol-monthly",
7296
+ "id": "workflow:self-ops-patrol-weekly",
7297
+ "name": "workflow:self-ops-patrol-weekly",
5371
7298
  "kind": "workflow",
5372
- "sourcePath": ".github/workflows/patrol-monthly.yml",
5373
- "evidencePath": ".github/workflows/patrol-monthly.yml",
7299
+ "sourcePath": ".github/workflows/self-ops-patrol-weekly.yml",
7300
+ "evidencePath": ".github/workflows/self-ops-patrol-weekly.yml",
5374
7301
  "availability": "shipped",
5375
7302
  "visibility": "public",
5376
7303
  "participantFacing": true,
5377
7304
  "public": true,
5378
- "inputCount": 5,
5379
- "inputs": [
5380
- "buildchain-ref",
5381
- "buildchain-repository",
5382
- "dry-run",
5383
- "target-branch",
5384
- "universal-request-json"
5385
- ],
7305
+ "inputCount": 0,
7306
+ "inputs": [],
5386
7307
  "reverseAuditSource": ".github/workflows"
5387
7308
  },
5388
7309
  {
5389
- "id": "workflow:patrol-observed-evidence",
5390
- "name": "workflow:patrol-observed-evidence",
7310
+ "id": "workflow:self-ops-promotion-recovery",
7311
+ "name": "workflow:self-ops-promotion-recovery",
5391
7312
  "kind": "workflow",
5392
- "sourcePath": ".github/workflows/patrol-observed-evidence.yml",
5393
- "evidencePath": ".github/workflows/patrol-observed-evidence.yml",
7313
+ "sourcePath": ".github/workflows/self-ops-promotion-recovery.yml",
7314
+ "evidencePath": ".github/workflows/self-ops-promotion-recovery.yml",
5394
7315
  "availability": "shipped",
5395
7316
  "visibility": "public",
5396
7317
  "participantFacing": true,
5397
7318
  "public": true,
5398
- "inputCount": 13,
5399
- "inputs": [
5400
- "artifact-path",
5401
- "build-command",
5402
- "buildchain-ref",
5403
- "cloudfront-distribution",
5404
- "evidence-source-path",
5405
- "evidence-source-ref",
5406
- "evidence-source-repository",
5407
- "manifest-path",
5408
- "production-aws-role-arn",
5409
- "production-bucket",
5410
- "production-environment",
5411
- "universal-request-json",
5412
- "verify-command"
5413
- ],
7319
+ "inputCount": 0,
7320
+ "inputs": [],
5414
7321
  "reverseAuditSource": ".github/workflows"
5415
7322
  },
5416
7323
  {
5417
- "id": "workflow:patrol-weekly",
5418
- "name": "workflow:patrol-weekly",
7324
+ "id": "workflow:self-ops-recovery-failure-dogfood",
7325
+ "name": "workflow:self-ops-recovery-failure-dogfood",
5419
7326
  "kind": "workflow",
5420
- "sourcePath": ".github/workflows/patrol-weekly.yml",
5421
- "evidencePath": ".github/workflows/patrol-weekly.yml",
7327
+ "sourcePath": ".github/workflows/self-ops-recovery-failure-dogfood.yml",
7328
+ "evidencePath": ".github/workflows/self-ops-recovery-failure-dogfood.yml",
5422
7329
  "availability": "shipped",
5423
7330
  "visibility": "public",
5424
7331
  "participantFacing": true,
5425
7332
  "public": true,
5426
- "inputCount": 5,
5427
- "inputs": [
5428
- "buildchain-ref",
5429
- "buildchain-repository",
5430
- "dry-run",
5431
- "target-branch",
5432
- "universal-request-json"
5433
- ],
7333
+ "inputCount": 0,
7334
+ "inputs": [],
5434
7335
  "reverseAuditSource": ".github/workflows"
5435
7336
  },
5436
7337
  {
5437
- "id": "workflow:publication-artifact",
5438
- "name": "workflow:publication-artifact",
7338
+ "id": "workflow:self-ops-runner-smoke",
7339
+ "name": "workflow:self-ops-runner-smoke",
5439
7340
  "kind": "workflow",
5440
- "sourcePath": ".github/workflows/publication-artifact.yml",
5441
- "evidencePath": ".github/workflows/publication-artifact.yml",
7341
+ "sourcePath": ".github/workflows/self-ops-runner-smoke.yml",
7342
+ "evidencePath": ".github/workflows/self-ops-runner-smoke.yml",
5442
7343
  "availability": "shipped",
5443
7344
  "visibility": "public",
5444
7345
  "participantFacing": true,
5445
- "public": true,
5446
- "inputCount": 24,
5447
- "inputs": [
5448
- "artifact-name",
5449
- "artifact-paths",
5450
- "artifact-retention-days",
5451
- "build-command",
5452
- "buildchain-alpha-contract-lock-path",
5453
- "buildchain-contract-compatibility-policy",
5454
- "buildchain-contract-drift-issue-mode",
5455
- "buildchain-contract-lock-path",
5456
- "buildchain-ref",
5457
- "buildchain-repository",
5458
- "buildchain-stable-contract-lock-path",
5459
- "node-version",
5460
- "package-name",
5461
- "prepare-paper-package",
5462
- "publish-dist-tag",
5463
- "setup-node",
5464
- "target-ref",
5465
- "toolchain-command",
5466
- "toolchain-digest",
5467
- "toolchain-image",
5468
- "toolchain-type",
5469
- "universal-request-json",
5470
- "verify-command",
5471
- "working-directory"
5472
- ],
7346
+ "public": true,
7347
+ "inputCount": 0,
7348
+ "inputs": [],
5473
7349
  "reverseAuditSource": ".github/workflows"
5474
7350
  },
5475
7351
  {
5476
- "id": "workflow:release-candidate-promote",
5477
- "name": "workflow:release-candidate-promote",
7352
+ "id": "workflow:self-ops-stable-candidate-patrol",
7353
+ "name": "workflow:self-ops-stable-candidate-patrol",
5478
7354
  "kind": "workflow",
5479
- "sourcePath": ".github/workflows/release-candidate-promote.yml",
5480
- "evidencePath": ".github/workflows/release-candidate-promote.yml",
7355
+ "sourcePath": ".github/workflows/self-ops-stable-candidate-patrol.yml",
7356
+ "evidencePath": ".github/workflows/self-ops-stable-candidate-patrol.yml",
5481
7357
  "availability": "shipped",
5482
7358
  "visibility": "public",
5483
7359
  "participantFacing": true,
5484
7360
  "public": true,
5485
- "inputCount": 107,
5486
- "inputs": [
5487
- "allow-repository",
5488
- "artifact-name",
5489
- "artifact-patterns",
5490
- "branch-protection-bypass-apps",
5491
- "branch-protection-bypass-teams",
5492
- "branch-protection-bypass-users",
5493
- "buildchain-alpha-contract-lock-path",
5494
- "buildchain-channel",
5495
- "buildchain-contract-compatibility-policy",
5496
- "buildchain-contract-drift-issue-mode",
5497
- "buildchain-contract-lock-path",
5498
- "buildchain-ref",
5499
- "buildchain-repository",
5500
- "buildchain-stable-contract-lock-path",
5501
- "channel",
5502
- "declarative-release-tail",
5503
- "dry-run",
5504
- "github-artifact-attestation-environment",
5505
- "github-artifact-attestation-policy-json",
5506
- "github-artifact-attestation-retention-days",
5507
- "github-governance-receipt-json",
5508
- "github-release",
5509
- "github-release-notes",
5510
- "github-release-payload-patterns",
5511
- "github-release-title",
5512
- "package-manager",
5513
- "provider-failure-after-capability",
5514
- "publication-admission-json",
5515
- "publication-auto-admission",
5516
- "publication-auto-no-gate",
5517
- "publication-commit-command",
5518
- "publication-commit-evidence-path",
5519
- "publication-consumer-predicate-id",
5520
- "publication-consumer-qualification-command",
5521
- "publication-consumer-qualification-controller-sha",
5522
- "publication-control-plane-audit-json",
5523
- "publication-expected-json",
5524
- "publication-gate-aggregate-json",
5525
- "publication-gate-command",
5526
- "publication-gate-controller-sha",
5527
- "publication-package-name",
5528
- "publication-product",
5529
- "publication-publisher-workflow-path",
5530
- "publication-runner-provenance-json",
5531
- "publication-target",
5532
- "publication-used-nonces-json",
5533
- "publication-used-qualification-nonces-json",
5534
- "publish-artifact-kind",
5535
- "publish-command",
5536
- "publish-dist-tag",
5537
- "publish-mode",
5538
- "publish-package-main",
5539
- "publish-package-set-order",
5540
- "publish-rematerialize-on-resume",
5541
- "publish-required-artifacts-json",
5542
- "publish-target",
5543
- "publish-transaction-override",
5544
- "release-activation-command",
5545
- "release-activation-receipt-set-path",
5546
- "release-candidate-family-assignment-id",
5547
- "release-candidate-family-evidence-required",
5548
- "release-candidate-family-evidence-root",
5549
- "release-candidate-family-initiative-id",
5550
- "release-candidate-wait-seconds",
5551
- "release-candidate-workflow-file",
5552
- "release-candidate-workflow-name",
5553
- "release-passport",
5554
- "release-passport-adopter-delivery-json",
5555
- "release-passport-attachment-command",
5556
- "release-passport-buildchain-self-kfd",
5557
- "release-passport-evidence-command",
5558
- "release-passport-evidence-jsons",
5559
- "release-passport-evidence-path",
5560
- "release-passport-impact-json",
5561
- "release-passport-invariant-passport-command",
5562
- "release-passport-invariant-passport-jsons",
5563
- "release-passport-kfd-1-witness-jsons",
5564
- "release-passport-kfd-2-claim-jsons",
5565
- "release-passport-kfd-3-artifact-verify-command",
5566
- "release-passport-kfd-3-artifact-witness-jsons",
5567
- "release-passport-kfd-3-prebuild-witness-jsons",
5568
- "release-passport-kfd-adopter-manifest-gate-json",
5569
- "release-passport-kfd-adopter-manifest-json",
5570
- "release-passport-kfd-product-gate-jsons",
5571
- "release-passport-kfd-support-matrix-json",
5572
- "release-passport-output-dir",
5573
- "release-passport-platform-manifest-paths",
5574
- "release-passport-product-name",
5575
- "release-passport-v4-runtime-resume-evidence-json",
5576
- "release-propagation-config-path",
5577
- "required-artifact-count",
5578
- "required-status-check",
5579
- "resume-buildchain-runtime-sha",
5580
- "resume-candidate-repository",
5581
- "resume-candidate-run-id",
5582
- "resume-expected-candidate-root",
5583
- "resume-expected-candidate-runtime-sha",
5584
- "resume-expected-source-tree",
5585
- "resume-expected-workflow-file",
5586
- "resume-expected-workflow-name",
5587
- "resume-transaction-id",
5588
- "runner-preset",
5589
- "standalone-binary-distribution",
5590
- "target-ref",
5591
- "target-sha",
5592
- "trusted-publishing",
5593
- "universal-request-json"
5594
- ],
7361
+ "inputCount": 0,
7362
+ "inputs": [],
5595
7363
  "reverseAuditSource": ".github/workflows"
5596
7364
  },
5597
7365
  {
5598
- "id": "workflow:release-governance-reconcile",
5599
- "name": "workflow:release-governance-reconcile",
7366
+ "id": "workflow:self-release-binary-assets",
7367
+ "name": "workflow:self-release-binary-assets",
5600
7368
  "kind": "workflow",
5601
- "sourcePath": ".github/workflows/release-governance-reconcile.yml",
5602
- "evidencePath": ".github/workflows/release-governance-reconcile.yml",
7369
+ "sourcePath": ".github/workflows/self-release-binary-assets.yml",
7370
+ "evidencePath": ".github/workflows/self-release-binary-assets.yml",
5603
7371
  "availability": "shipped",
5604
7372
  "visibility": "public",
5605
7373
  "participantFacing": true,
5606
7374
  "public": true,
5607
- "inputCount": 5,
5608
- "inputs": [
5609
- "apply",
5610
- "branch",
5611
- "buildchain-ref",
5612
- "candidate-sha",
5613
- "universal-request-json"
5614
- ],
7375
+ "inputCount": 0,
7376
+ "inputs": [],
5615
7377
  "reverseAuditSource": ".github/workflows"
5616
7378
  },
5617
7379
  {
5618
- "id": "workflow:release-line-bootstrap",
5619
- "name": "workflow:release-line-bootstrap",
7380
+ "id": "workflow:self-release-line-open",
7381
+ "name": "workflow:self-release-line-open",
5620
7382
  "kind": "workflow",
5621
- "sourcePath": ".github/workflows/release-line-bootstrap.yml",
5622
- "evidencePath": ".github/workflows/release-line-bootstrap.yml",
7383
+ "sourcePath": ".github/workflows/self-release-line-open.yml",
7384
+ "evidencePath": ".github/workflows/self-release-line-open.yml",
5623
7385
  "availability": "shipped",
5624
7386
  "visibility": "public",
5625
7387
  "participantFacing": true,
@@ -5629,11 +7391,11 @@
5629
7391
  "reverseAuditSource": ".github/workflows"
5630
7392
  },
5631
7393
  {
5632
- "id": "workflow:release-new-version",
5633
- "name": "workflow:release-new-version",
7394
+ "id": "workflow:self-release-new-version-compat",
7395
+ "name": "workflow:self-release-new-version-compat",
5634
7396
  "kind": "workflow",
5635
- "sourcePath": ".github/workflows/release-new-version.yml",
5636
- "evidencePath": ".github/workflows/release-new-version.yml",
7397
+ "sourcePath": ".github/workflows/self-release-new-version-compat.yml",
7398
+ "evidencePath": ".github/workflows/self-release-new-version-compat.yml",
5637
7399
  "availability": "shipped",
5638
7400
  "visibility": "public",
5639
7401
  "participantFacing": true,
@@ -5643,76 +7405,39 @@
5643
7405
  "reverseAuditSource": ".github/workflows"
5644
7406
  },
5645
7407
  {
5646
- "id": "workflow:release-propagation",
5647
- "name": "workflow:release-propagation",
7408
+ "id": "workflow:self-release-npm-dry-run",
7409
+ "name": "workflow:self-release-npm-dry-run",
5648
7410
  "kind": "workflow",
5649
- "sourcePath": ".github/workflows/release-propagation.yml",
5650
- "evidencePath": ".github/workflows/release-propagation.yml",
7411
+ "sourcePath": ".github/workflows/self-release-npm-dry-run.yml",
7412
+ "evidencePath": ".github/workflows/self-release-npm-dry-run.yml",
5651
7413
  "availability": "shipped",
5652
7414
  "visibility": "public",
5653
7415
  "participantFacing": true,
5654
7416
  "public": true,
5655
- "inputCount": 20,
5656
- "inputs": [
5657
- "agent-work-context-json",
5658
- "agent-work-mode",
5659
- "buildchain-ref",
5660
- "buildchain-repository",
5661
- "downstream-base-ref",
5662
- "downstream-branch",
5663
- "downstream-prepare-command",
5664
- "downstream-repository",
5665
- "downstream-target",
5666
- "downstream-update-command",
5667
- "downstream-verify-command",
5668
- "dry-run",
5669
- "graph-json",
5670
- "lock-path",
5671
- "pr-body",
5672
- "pr-title",
5673
- "refresh-managed-readme-badges",
5674
- "source-node",
5675
- "universal-request-json",
5676
- "upstream-release-json"
5677
- ],
7417
+ "inputCount": 0,
7418
+ "inputs": [],
5678
7419
  "reverseAuditSource": ".github/workflows"
5679
7420
  },
5680
7421
  {
5681
- "id": "workflow:release-tail",
5682
- "name": "workflow:release-tail",
7422
+ "id": "workflow:self-release-promote",
7423
+ "name": "workflow:self-release-promote",
5683
7424
  "kind": "workflow",
5684
- "sourcePath": ".github/workflows/release-tail.yml",
5685
- "evidencePath": ".github/workflows/release-tail.yml",
7425
+ "sourcePath": ".github/workflows/self-release-promote.yml",
7426
+ "evidencePath": ".github/workflows/self-release-promote.yml",
5686
7427
  "availability": "shipped",
5687
7428
  "visibility": "public",
5688
7429
  "participantFacing": true,
5689
7430
  "public": true,
5690
- "inputCount": 15,
5691
- "inputs": [
5692
- "buildchain-ref",
5693
- "candidate-root",
5694
- "capsule-contract",
5695
- "capsule-path",
5696
- "capsule-root",
5697
- "declaration-path",
5698
- "evidence-path",
5699
- "execute",
5700
- "provider-bindings-path",
5701
- "rehearsal-authority-path",
5702
- "rehearsal-capsule-path",
5703
- "rehearsal-evidence-path",
5704
- "rehearsal-mode",
5705
- "state-path",
5706
- "universal-request-json"
5707
- ],
7431
+ "inputCount": 0,
7432
+ "inputs": [],
5708
7433
  "reverseAuditSource": ".github/workflows"
5709
7434
  },
5710
7435
  {
5711
- "id": "workflow:release-verify",
5712
- "name": "workflow:release-verify",
7436
+ "id": "workflow:self-release-rehearsal-dogfood",
7437
+ "name": "workflow:self-release-rehearsal-dogfood",
5713
7438
  "kind": "workflow",
5714
- "sourcePath": ".github/workflows/release-verify.yml",
5715
- "evidencePath": ".github/workflows/release-verify.yml",
7439
+ "sourcePath": ".github/workflows/self-release-rehearsal-dogfood.yml",
7440
+ "evidencePath": ".github/workflows/self-release-rehearsal-dogfood.yml",
5716
7441
  "availability": "shipped",
5717
7442
  "visibility": "public",
5718
7443
  "participantFacing": true,
@@ -5722,11 +7447,11 @@
5722
7447
  "reverseAuditSource": ".github/workflows"
5723
7448
  },
5724
7449
  {
5725
- "id": "workflow:self-hosted-runner-smoke",
5726
- "name": "workflow:self-hosted-runner-smoke",
7450
+ "id": "workflow:self-release-tail-dogfood",
7451
+ "name": "workflow:self-release-tail-dogfood",
5727
7452
  "kind": "workflow",
5728
- "sourcePath": ".github/workflows/self-hosted-runner-smoke.yml",
5729
- "evidencePath": ".github/workflows/self-hosted-runner-smoke.yml",
7453
+ "sourcePath": ".github/workflows/self-release-tail-dogfood.yml",
7454
+ "evidencePath": ".github/workflows/self-release-tail-dogfood.yml",
5730
7455
  "availability": "shipped",
5731
7456
  "visibility": "public",
5732
7457
  "participantFacing": true,
@@ -5767,20 +7492,6 @@
5767
7492
  ],
5768
7493
  "reverseAuditSource": ".github/workflows"
5769
7494
  },
5770
- {
5771
- "id": "workflow:universal-bootstrap-dogfood",
5772
- "name": "workflow:universal-bootstrap-dogfood",
5773
- "kind": "workflow",
5774
- "sourcePath": ".github/workflows/universal-bootstrap-dogfood.yml",
5775
- "evidencePath": ".github/workflows/universal-bootstrap-dogfood.yml",
5776
- "availability": "shipped",
5777
- "visibility": "public",
5778
- "participantFacing": true,
5779
- "public": true,
5780
- "inputCount": 0,
5781
- "inputs": [],
5782
- "reverseAuditSource": ".github/workflows"
5783
- },
5784
7495
  {
5785
7496
  "id": "workflow:universal-bootstrap-recovery",
5786
7497
  "name": "workflow:universal-bootstrap-recovery",
@@ -5797,20 +7508,6 @@
5797
7508
  ],
5798
7509
  "reverseAuditSource": ".github/workflows"
5799
7510
  },
5800
- {
5801
- "id": "workflow:v4-adopter-delivery-dogfood",
5802
- "name": "workflow:v4-adopter-delivery-dogfood",
5803
- "kind": "workflow",
5804
- "sourcePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
5805
- "evidencePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
5806
- "availability": "shipped",
5807
- "visibility": "public",
5808
- "participantFacing": true,
5809
- "public": true,
5810
- "inputCount": 0,
5811
- "inputs": [],
5812
- "reverseAuditSource": ".github/workflows"
5813
- },
5814
7511
  {
5815
7512
  "id": "workflow:v4-adopter-delivery",
5816
7513
  "name": "workflow:v4-adopter-delivery",
@@ -5835,48 +7532,6 @@
5835
7532
  ],
5836
7533
  "reverseAuditSource": ".github/workflows"
5837
7534
  },
5838
- {
5839
- "id": "workflow:v4-declarative-release-tail-dogfood",
5840
- "name": "workflow:v4-declarative-release-tail-dogfood",
5841
- "kind": "workflow",
5842
- "sourcePath": ".github/workflows/v4-declarative-release-tail-dogfood.yml",
5843
- "evidencePath": ".github/workflows/v4-declarative-release-tail-dogfood.yml",
5844
- "availability": "shipped",
5845
- "visibility": "public",
5846
- "participantFacing": true,
5847
- "public": true,
5848
- "inputCount": 0,
5849
- "inputs": [],
5850
- "reverseAuditSource": ".github/workflows"
5851
- },
5852
- {
5853
- "id": "workflow:v4-public-consumer-dogfood",
5854
- "name": "workflow:v4-public-consumer-dogfood",
5855
- "kind": "workflow",
5856
- "sourcePath": ".github/workflows/v4-public-consumer-dogfood.yml",
5857
- "evidencePath": ".github/workflows/v4-public-consumer-dogfood.yml",
5858
- "availability": "shipped",
5859
- "visibility": "public",
5860
- "participantFacing": true,
5861
- "public": true,
5862
- "inputCount": 0,
5863
- "inputs": [],
5864
- "reverseAuditSource": ".github/workflows"
5865
- },
5866
- {
5867
- "id": "workflow:v4-publication-rehearsal-dogfood",
5868
- "name": "workflow:v4-publication-rehearsal-dogfood",
5869
- "kind": "workflow",
5870
- "sourcePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
5871
- "evidencePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
5872
- "availability": "shipped",
5873
- "visibility": "public",
5874
- "participantFacing": true,
5875
- "public": true,
5876
- "inputCount": 0,
5877
- "inputs": [],
5878
- "reverseAuditSource": ".github/workflows"
5879
- },
5880
7535
  {
5881
7536
  "id": "workflow:v4-stage-capsule-canary",
5882
7537
  "name": "workflow:v4-stage-capsule-canary",
@@ -5919,20 +7574,6 @@
5919
7574
  ],
5920
7575
  "reverseAuditSource": ".github/workflows"
5921
7576
  },
5922
- {
5923
- "id": "workflow:verify",
5924
- "name": "workflow:verify",
5925
- "kind": "workflow",
5926
- "sourcePath": ".github/workflows/verify.yml",
5927
- "evidencePath": ".github/workflows/verify.yml",
5928
- "availability": "shipped",
5929
- "visibility": "public",
5930
- "participantFacing": true,
5931
- "public": true,
5932
- "inputCount": 0,
5933
- "inputs": [],
5934
- "reverseAuditSource": ".github/workflows"
5935
- },
5936
7577
  {
5937
7578
  "id": "action:github-artifact-attestation",
5938
7579
  "name": "action:github-artifact-attestation",
@@ -7296,6 +8937,18 @@
7296
8937
  "public": true,
7297
8938
  "reverseAuditSource": "dist/site/page-registry.json"
7298
8939
  },
8940
+ {
8941
+ "id": "site-page:manual:workflow-catalog",
8942
+ "name": "site-page:manual:workflow-catalog",
8943
+ "kind": "site-page",
8944
+ "sourcePath": "dist/site/page-registry.json",
8945
+ "evidencePath": "dist/site/page-registry.json",
8946
+ "availability": "shipped",
8947
+ "visibility": "public",
8948
+ "participantFacing": true,
8949
+ "public": true,
8950
+ "reverseAuditSource": "dist/site/page-registry.json"
8951
+ },
7299
8952
  {
7300
8953
  "id": "site-page:overview:home",
7301
8954
  "name": "site-page:overview:home",
@@ -7345,11 +8998,11 @@
7345
8998
  "public": true
7346
8999
  },
7347
9000
  {
7348
- "id": "control:.github/workflows/buildchain-ref-promotion.yml",
7349
- "name": "control:.github/workflows/buildchain-ref-promotion.yml",
9001
+ "id": "control:.github/workflows/self-release-promote.yml",
9002
+ "name": "control:.github/workflows/self-release-promote.yml",
7350
9003
  "kind": "workflow",
7351
- "sourcePath": ".github/workflows/buildchain-ref-promotion.yml",
7352
- "evidencePath": ".github/workflows/buildchain-ref-promotion.yml",
9004
+ "sourcePath": ".github/workflows/self-release-promote.yml",
9005
+ "evidencePath": ".github/workflows/self-release-promote.yml",
7353
9006
  "availability": "shipped",
7354
9007
  "visibility": "public",
7355
9008
  "participantFacing": true,
@@ -7448,7 +9101,7 @@
7448
9101
  "name": "Buildchain standalone binary distribution",
7449
9102
  "kind": "binary-distribution",
7450
9103
  "sourcePath": "scripts/build-standalone-binary.mjs",
7451
- "evidencePath": ".github/workflows/binary-distribution.yml",
9104
+ "evidencePath": ".github/workflows/self-build-binary-distribution.yml",
7452
9105
  "availability": "shipped",
7453
9106
  "visibility": "public",
7454
9107
  "participantFacing": true,
@@ -7479,6 +9132,6 @@
7479
9132
  }
7480
9133
  }
7481
9134
  ],
7482
- "publicSurfaceCount": 479
9135
+ "publicSurfaceCount": 522
7483
9136
  }
7484
9137
  }