@kungfu-tech/buildchain 2.12.6 → 2.12.7-alpha.10

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 (40) hide show
  1. package/actions/promote-buildchain-ref/README.md +11 -3
  2. package/bin/buildchain.mjs +78 -0
  3. package/dist/site/agent-index.json +1 -0
  4. package/dist/site/artifact-schemas.json +1 -0
  5. package/dist/site/buildchain-contract.json +163 -38
  6. package/dist/site/buildchain-site.json +73 -17
  7. package/dist/site/capability-registry.json +6 -5
  8. package/dist/site/cli-registry.json +36 -0
  9. package/dist/site/controller-registry.json +121 -10
  10. package/dist/site/kfd-claims.json +305 -17
  11. package/dist/site/kfd-upstream-aggregate.json +1 -1
  12. package/dist/site/manual-registry.json +16 -2
  13. package/dist/site/node-api-registry.json +43 -4
  14. package/dist/site/page-registry.json +58 -11
  15. package/dist/site/public-surface-audit.json +212 -19
  16. package/dist/site/publication-authority-registry.json +778 -0
  17. package/dist/site/publication-registry.json +4 -4
  18. package/dist/site/release-provenance.json +4 -0
  19. package/dist/site/site-manifest.json +15 -6
  20. package/dist/site/workflow-registry.json +173 -12
  21. package/docs/MAP.md +2 -1
  22. package/docs/publication-artifacts.md +25 -18
  23. package/docs/publication-authority.md +213 -0
  24. package/docs/release-governance.md +3 -1
  25. package/docs/shifu-gate-profiles.md +6 -0
  26. package/package.json +5 -1
  27. package/packages/core/buildchain-kfd-claims.js +5 -0
  28. package/packages/core/buildchain-publication-authority.js +80 -0
  29. package/packages/core/controller-evidence.js +8 -8
  30. package/packages/core/index.js +35 -0
  31. package/packages/core/publication-artifact-candidate.js +128 -0
  32. package/packages/core/publication-authority.js +764 -0
  33. package/packages/core/publication-control-plane-audit.js +135 -0
  34. package/scripts/assemble-publication-artifact-admission.mjs +190 -0
  35. package/scripts/assemble-self-publication-admission.mjs +183 -0
  36. package/scripts/audit-publication-control-plane.mjs +409 -0
  37. package/scripts/check-inventory.mjs +25 -2
  38. package/scripts/generate-site-bundle.mjs +16 -0
  39. package/scripts/publication-artifact-candidate.mjs +130 -0
  40. package/scripts/workflow-friction-report.mjs +13 -2
@@ -0,0 +1,778 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "contract": "kungfu-buildchain-publication-authority-registry",
4
+ "defaultDecision": "deny",
5
+ "entries": [
6
+ {
7
+ "workflowPath": ".github/workflows/.binary-release-assets.yml",
8
+ "authorityClass": "product-publication",
9
+ "publicationCapable": true,
10
+ "capabilityIds": [
11
+ "github-release"
12
+ ],
13
+ "credentialMode": "github-token",
14
+ "publisherWorkflowMode": "fixed",
15
+ "publisherWorkflowPath": ".github/workflows/.binary-release-assets.yml",
16
+ "environment": "buildchain-release-assets",
17
+ "environmentMode": "fixed",
18
+ "runnerPolicy": "qualified-measured",
19
+ "notes": ""
20
+ },
21
+ {
22
+ "workflowPath": ".github/workflows/.build.yml",
23
+ "authorityClass": "non-publication-oidc",
24
+ "publicationCapable": false,
25
+ "capabilityIds": [],
26
+ "credentialMode": "none",
27
+ "publisherWorkflowMode": "fixed",
28
+ "publisherWorkflowPath": ".github/workflows/.build.yml",
29
+ "environment": "",
30
+ "environmentMode": "fixed",
31
+ "runnerPolicy": "unqualified",
32
+ "notes": ""
33
+ },
34
+ {
35
+ "workflowPath": ".github/workflows/.publication-authority.yml",
36
+ "authorityClass": "evidence-publication",
37
+ "publicationCapable": false,
38
+ "capabilityIds": [],
39
+ "credentialMode": "none",
40
+ "publisherWorkflowMode": "fixed",
41
+ "publisherWorkflowPath": ".github/workflows/.publication-authority.yml",
42
+ "environment": "",
43
+ "environmentMode": "fixed",
44
+ "runnerPolicy": "unqualified",
45
+ "notes": ""
46
+ },
47
+ {
48
+ "workflowPath": ".github/workflows/.release-verify.yml",
49
+ "authorityClass": "governance-write",
50
+ "publicationCapable": false,
51
+ "capabilityIds": [],
52
+ "credentialMode": "none",
53
+ "publisherWorkflowMode": "fixed",
54
+ "publisherWorkflowPath": ".github/workflows/.release-verify.yml",
55
+ "environment": "",
56
+ "environmentMode": "fixed",
57
+ "runnerPolicy": "unqualified",
58
+ "notes": ""
59
+ },
60
+ {
61
+ "workflowPath": ".github/workflows/.sam-release.yml",
62
+ "authorityClass": "retired-deny",
63
+ "publicationCapable": false,
64
+ "capabilityIds": [],
65
+ "credentialMode": "none",
66
+ "publisherWorkflowMode": "fixed",
67
+ "publisherWorkflowPath": ".github/workflows/.sam-release.yml",
68
+ "environment": "",
69
+ "environmentMode": "fixed",
70
+ "runnerPolicy": "unqualified",
71
+ "notes": ""
72
+ },
73
+ {
74
+ "workflowPath": ".github/workflows/.sam-verify.yml",
75
+ "authorityClass": "retired-deny",
76
+ "publicationCapable": false,
77
+ "capabilityIds": [],
78
+ "credentialMode": "none",
79
+ "publisherWorkflowMode": "fixed",
80
+ "publisherWorkflowPath": ".github/workflows/.sam-verify.yml",
81
+ "environment": "",
82
+ "environmentMode": "fixed",
83
+ "runnerPolicy": "unqualified",
84
+ "notes": ""
85
+ },
86
+ {
87
+ "workflowPath": ".github/workflows/.sync-remote-git.yml",
88
+ "authorityClass": "governance-write",
89
+ "publicationCapable": false,
90
+ "capabilityIds": [],
91
+ "credentialMode": "none",
92
+ "publisherWorkflowMode": "fixed",
93
+ "publisherWorkflowPath": ".github/workflows/.sync-remote-git.yml",
94
+ "environment": "",
95
+ "environmentMode": "fixed",
96
+ "runnerPolicy": "unqualified",
97
+ "notes": ""
98
+ },
99
+ {
100
+ "workflowPath": ".github/workflows/.web-surface.yml",
101
+ "authorityClass": "product-publication",
102
+ "publicationCapable": true,
103
+ "capabilityIds": [
104
+ "web-production"
105
+ ],
106
+ "credentialMode": "oidc",
107
+ "publisherWorkflowMode": "caller-bound",
108
+ "publisherWorkflowPath": ".github/workflows/.web-surface.yml",
109
+ "environment": "consumer-defined",
110
+ "environmentMode": "caller-bound",
111
+ "runnerPolicy": "qualified-measured",
112
+ "notes": ""
113
+ },
114
+ {
115
+ "workflowPath": ".github/workflows/.wheel-release.yml",
116
+ "authorityClass": "retired-deny",
117
+ "publicationCapable": false,
118
+ "capabilityIds": [],
119
+ "credentialMode": "none",
120
+ "publisherWorkflowMode": "fixed",
121
+ "publisherWorkflowPath": ".github/workflows/.wheel-release.yml",
122
+ "environment": "",
123
+ "environmentMode": "fixed",
124
+ "runnerPolicy": "unqualified",
125
+ "notes": ""
126
+ },
127
+ {
128
+ "workflowPath": ".github/workflows/.wheel-verify.yml",
129
+ "authorityClass": "retired-deny",
130
+ "publicationCapable": false,
131
+ "capabilityIds": [],
132
+ "credentialMode": "none",
133
+ "publisherWorkflowMode": "fixed",
134
+ "publisherWorkflowPath": ".github/workflows/.wheel-verify.yml",
135
+ "environment": "",
136
+ "environmentMode": "fixed",
137
+ "runnerPolicy": "unqualified",
138
+ "notes": ""
139
+ },
140
+ {
141
+ "workflowPath": ".github/workflows/binary-distribution.yml",
142
+ "authorityClass": "evidence-publication",
143
+ "publicationCapable": false,
144
+ "capabilityIds": [],
145
+ "credentialMode": "none",
146
+ "publisherWorkflowMode": "fixed",
147
+ "publisherWorkflowPath": ".github/workflows/binary-distribution.yml",
148
+ "environment": "",
149
+ "environmentMode": "fixed",
150
+ "runnerPolicy": "unqualified",
151
+ "notes": ""
152
+ },
153
+ {
154
+ "workflowPath": ".github/workflows/binary-release-assets.yml",
155
+ "authorityClass": "governance-write",
156
+ "publicationCapable": false,
157
+ "capabilityIds": [],
158
+ "credentialMode": "none",
159
+ "publisherWorkflowMode": "fixed",
160
+ "publisherWorkflowPath": ".github/workflows/binary-release-assets.yml",
161
+ "environment": "",
162
+ "environmentMode": "fixed",
163
+ "runnerPolicy": "unqualified",
164
+ "notes": ""
165
+ },
166
+ {
167
+ "workflowPath": ".github/workflows/build-surface-fixture.yml",
168
+ "authorityClass": "non-publication-oidc",
169
+ "publicationCapable": false,
170
+ "capabilityIds": [],
171
+ "credentialMode": "none",
172
+ "publisherWorkflowMode": "fixed",
173
+ "publisherWorkflowPath": ".github/workflows/build-surface-fixture.yml",
174
+ "environment": "",
175
+ "environmentMode": "fixed",
176
+ "runnerPolicy": "unqualified",
177
+ "notes": ""
178
+ },
179
+ {
180
+ "workflowPath": ".github/workflows/build.yml",
181
+ "authorityClass": "non-publication-oidc",
182
+ "publicationCapable": false,
183
+ "capabilityIds": [],
184
+ "credentialMode": "none",
185
+ "publisherWorkflowMode": "fixed",
186
+ "publisherWorkflowPath": ".github/workflows/build.yml",
187
+ "environment": "",
188
+ "environmentMode": "fixed",
189
+ "runnerPolicy": "unqualified",
190
+ "notes": ""
191
+ },
192
+ {
193
+ "workflowPath": ".github/workflows/buildchain-alpha-self-dogfood.yml",
194
+ "authorityClass": "non-publication-oidc",
195
+ "publicationCapable": false,
196
+ "capabilityIds": [],
197
+ "credentialMode": "none",
198
+ "publisherWorkflowMode": "fixed",
199
+ "publisherWorkflowPath": ".github/workflows/buildchain-alpha-self-dogfood.yml",
200
+ "environment": "",
201
+ "environmentMode": "fixed",
202
+ "runnerPolicy": "unqualified",
203
+ "notes": ""
204
+ },
205
+ {
206
+ "workflowPath": ".github/workflows/buildchain-patrol-daily.yml",
207
+ "authorityClass": "governance-write",
208
+ "publicationCapable": false,
209
+ "capabilityIds": [],
210
+ "credentialMode": "none",
211
+ "publisherWorkflowMode": "fixed",
212
+ "publisherWorkflowPath": ".github/workflows/buildchain-patrol-daily.yml",
213
+ "environment": "",
214
+ "environmentMode": "fixed",
215
+ "runnerPolicy": "unqualified",
216
+ "notes": ""
217
+ },
218
+ {
219
+ "workflowPath": ".github/workflows/buildchain-patrol-monthly.yml",
220
+ "authorityClass": "governance-write",
221
+ "publicationCapable": false,
222
+ "capabilityIds": [],
223
+ "credentialMode": "none",
224
+ "publisherWorkflowMode": "fixed",
225
+ "publisherWorkflowPath": ".github/workflows/buildchain-patrol-monthly.yml",
226
+ "environment": "",
227
+ "environmentMode": "fixed",
228
+ "runnerPolicy": "unqualified",
229
+ "notes": ""
230
+ },
231
+ {
232
+ "workflowPath": ".github/workflows/buildchain-patrol-weekly.yml",
233
+ "authorityClass": "governance-write",
234
+ "publicationCapable": false,
235
+ "capabilityIds": [],
236
+ "credentialMode": "none",
237
+ "publisherWorkflowMode": "fixed",
238
+ "publisherWorkflowPath": ".github/workflows/buildchain-patrol-weekly.yml",
239
+ "environment": "",
240
+ "environmentMode": "fixed",
241
+ "runnerPolicy": "unqualified",
242
+ "notes": ""
243
+ },
244
+ {
245
+ "workflowPath": ".github/workflows/buildchain-patrol.yml",
246
+ "authorityClass": "governance-write",
247
+ "publicationCapable": false,
248
+ "capabilityIds": [],
249
+ "credentialMode": "none",
250
+ "publisherWorkflowMode": "fixed",
251
+ "publisherWorkflowPath": ".github/workflows/buildchain-patrol.yml",
252
+ "environment": "",
253
+ "environmentMode": "fixed",
254
+ "runnerPolicy": "unqualified",
255
+ "notes": ""
256
+ },
257
+ {
258
+ "workflowPath": ".github/workflows/buildchain-ref-promotion.yml",
259
+ "authorityClass": "governance-write",
260
+ "publicationCapable": false,
261
+ "capabilityIds": [],
262
+ "credentialMode": "none",
263
+ "publisherWorkflowMode": "fixed",
264
+ "publisherWorkflowPath": ".github/workflows/buildchain-ref-promotion.yml",
265
+ "environment": "",
266
+ "environmentMode": "fixed",
267
+ "runnerPolicy": "unqualified",
268
+ "notes": ""
269
+ },
270
+ {
271
+ "workflowPath": ".github/workflows/buildchain-stable-candidate-patrol.yml",
272
+ "authorityClass": "governance-write",
273
+ "publicationCapable": false,
274
+ "capabilityIds": [],
275
+ "credentialMode": "none",
276
+ "publisherWorkflowMode": "fixed",
277
+ "publisherWorkflowPath": ".github/workflows/buildchain-stable-candidate-patrol.yml",
278
+ "environment": "",
279
+ "environmentMode": "fixed",
280
+ "runnerPolicy": "unqualified",
281
+ "notes": ""
282
+ },
283
+ {
284
+ "workflowPath": ".github/workflows/dev-pr-auto-merge.yml",
285
+ "authorityClass": "governance-write",
286
+ "publicationCapable": false,
287
+ "capabilityIds": [],
288
+ "credentialMode": "none",
289
+ "publisherWorkflowMode": "fixed",
290
+ "publisherWorkflowPath": ".github/workflows/dev-pr-auto-merge.yml",
291
+ "environment": "",
292
+ "environmentMode": "fixed",
293
+ "runnerPolicy": "unqualified",
294
+ "notes": ""
295
+ },
296
+ {
297
+ "workflowPath": ".github/workflows/npm-publish.yml",
298
+ "authorityClass": "dry-run-only",
299
+ "publicationCapable": false,
300
+ "capabilityIds": [],
301
+ "credentialMode": "none",
302
+ "publisherWorkflowMode": "fixed",
303
+ "publisherWorkflowPath": ".github/workflows/npm-publish.yml",
304
+ "environment": "",
305
+ "environmentMode": "fixed",
306
+ "runnerPolicy": "unqualified",
307
+ "notes": ""
308
+ },
309
+ {
310
+ "workflowPath": ".github/workflows/paper-release-sealed.yml",
311
+ "authorityClass": "product-publication",
312
+ "publicationCapable": true,
313
+ "capabilityIds": [
314
+ "github-release",
315
+ "npm-publish"
316
+ ],
317
+ "credentialMode": "trusted-publishing",
318
+ "publisherWorkflowMode": "caller-bound",
319
+ "publisherWorkflowPath": ".github/workflows/paper-release-sealed.yml",
320
+ "environment": "none",
321
+ "environmentMode": "fixed",
322
+ "runnerPolicy": "qualified-measured",
323
+ "notes": ""
324
+ },
325
+ {
326
+ "workflowPath": ".github/workflows/paper-release.yml",
327
+ "authorityClass": "product-publication",
328
+ "publicationCapable": true,
329
+ "capabilityIds": [
330
+ "github-release",
331
+ "npm-publish"
332
+ ],
333
+ "credentialMode": "trusted-publishing",
334
+ "publisherWorkflowMode": "caller-bound",
335
+ "publisherWorkflowPath": ".github/workflows/paper-release.yml",
336
+ "environment": "none",
337
+ "environmentMode": "fixed",
338
+ "runnerPolicy": "qualified-measured",
339
+ "notes": ""
340
+ },
341
+ {
342
+ "workflowPath": ".github/workflows/patrol-daily.yml",
343
+ "authorityClass": "governance-write",
344
+ "publicationCapable": false,
345
+ "capabilityIds": [],
346
+ "credentialMode": "none",
347
+ "publisherWorkflowMode": "fixed",
348
+ "publisherWorkflowPath": ".github/workflows/patrol-daily.yml",
349
+ "environment": "",
350
+ "environmentMode": "fixed",
351
+ "runnerPolicy": "unqualified",
352
+ "notes": ""
353
+ },
354
+ {
355
+ "workflowPath": ".github/workflows/patrol-monthly.yml",
356
+ "authorityClass": "governance-write",
357
+ "publicationCapable": false,
358
+ "capabilityIds": [],
359
+ "credentialMode": "none",
360
+ "publisherWorkflowMode": "fixed",
361
+ "publisherWorkflowPath": ".github/workflows/patrol-monthly.yml",
362
+ "environment": "",
363
+ "environmentMode": "fixed",
364
+ "runnerPolicy": "unqualified",
365
+ "notes": ""
366
+ },
367
+ {
368
+ "workflowPath": ".github/workflows/patrol-weekly.yml",
369
+ "authorityClass": "governance-write",
370
+ "publicationCapable": false,
371
+ "capabilityIds": [],
372
+ "credentialMode": "none",
373
+ "publisherWorkflowMode": "fixed",
374
+ "publisherWorkflowPath": ".github/workflows/patrol-weekly.yml",
375
+ "environment": "",
376
+ "environmentMode": "fixed",
377
+ "runnerPolicy": "unqualified",
378
+ "notes": ""
379
+ },
380
+ {
381
+ "workflowPath": ".github/workflows/publication-artifact.yml",
382
+ "authorityClass": "evidence-publication",
383
+ "publicationCapable": false,
384
+ "capabilityIds": [],
385
+ "credentialMode": "none",
386
+ "publisherWorkflowMode": "fixed",
387
+ "publisherWorkflowPath": ".github/workflows/publication-artifact.yml",
388
+ "environment": "",
389
+ "environmentMode": "fixed",
390
+ "runnerPolicy": "unqualified",
391
+ "notes": ""
392
+ },
393
+ {
394
+ "workflowPath": ".github/workflows/release-candidate-promote.yml",
395
+ "authorityClass": "product-publication",
396
+ "publicationCapable": true,
397
+ "capabilityIds": [
398
+ "channel-ref",
399
+ "github-release",
400
+ "npm-publish"
401
+ ],
402
+ "credentialMode": "trusted-publishing",
403
+ "publisherWorkflowMode": "caller-bound",
404
+ "publisherWorkflowPath": ".github/workflows/release-candidate-promote.yml",
405
+ "environment": "none",
406
+ "environmentMode": "fixed",
407
+ "runnerPolicy": "qualified-measured",
408
+ "notes": ""
409
+ },
410
+ {
411
+ "workflowPath": ".github/workflows/release-line-bootstrap.yml",
412
+ "authorityClass": "governance-write",
413
+ "publicationCapable": false,
414
+ "capabilityIds": [],
415
+ "credentialMode": "none",
416
+ "publisherWorkflowMode": "fixed",
417
+ "publisherWorkflowPath": ".github/workflows/release-line-bootstrap.yml",
418
+ "environment": "",
419
+ "environmentMode": "fixed",
420
+ "runnerPolicy": "unqualified",
421
+ "notes": ""
422
+ },
423
+ {
424
+ "workflowPath": ".github/workflows/release-propagation.yml",
425
+ "authorityClass": "governance-write",
426
+ "publicationCapable": false,
427
+ "capabilityIds": [],
428
+ "credentialMode": "none",
429
+ "publisherWorkflowMode": "fixed",
430
+ "publisherWorkflowPath": ".github/workflows/release-propagation.yml",
431
+ "environment": "",
432
+ "environmentMode": "fixed",
433
+ "runnerPolicy": "unqualified",
434
+ "notes": ""
435
+ },
436
+ {
437
+ "workflowPath": ".github/workflows/release-verify.yml",
438
+ "authorityClass": "governance-write",
439
+ "publicationCapable": false,
440
+ "capabilityIds": [],
441
+ "credentialMode": "none",
442
+ "publisherWorkflowMode": "fixed",
443
+ "publisherWorkflowPath": ".github/workflows/release-verify.yml",
444
+ "environment": "",
445
+ "environmentMode": "fixed",
446
+ "runnerPolicy": "unqualified",
447
+ "notes": ""
448
+ },
449
+ {
450
+ "workflowPath": ".github/workflows/stable-candidate-patrol.yml",
451
+ "authorityClass": "governance-write",
452
+ "publicationCapable": false,
453
+ "capabilityIds": [],
454
+ "credentialMode": "none",
455
+ "publisherWorkflowMode": "fixed",
456
+ "publisherWorkflowPath": ".github/workflows/stable-candidate-patrol.yml",
457
+ "environment": "",
458
+ "environmentMode": "fixed",
459
+ "runnerPolicy": "unqualified",
460
+ "notes": ""
461
+ }
462
+ ],
463
+ "workflowFacts": [
464
+ {
465
+ "path": ".github/workflows/.binary-release-assets.yml",
466
+ "signals": [
467
+ "write-permission",
468
+ "environment",
469
+ "github-release"
470
+ ],
471
+ "classified": true
472
+ },
473
+ {
474
+ "path": ".github/workflows/.build.yml",
475
+ "signals": [
476
+ "write-permission",
477
+ "oidc",
478
+ "cloud-credential"
479
+ ],
480
+ "classified": true
481
+ },
482
+ {
483
+ "path": ".github/workflows/.bump-minor-version.yml",
484
+ "signals": [],
485
+ "classified": false
486
+ },
487
+ {
488
+ "path": ".github/workflows/.gate-profile.yml",
489
+ "signals": [],
490
+ "classified": false
491
+ },
492
+ {
493
+ "path": ".github/workflows/.publication-authority.yml",
494
+ "signals": [],
495
+ "classified": true
496
+ },
497
+ {
498
+ "path": ".github/workflows/.release-docker.yml",
499
+ "signals": [],
500
+ "classified": false
501
+ },
502
+ {
503
+ "path": ".github/workflows/.release-elastic-beanstalk.yml",
504
+ "signals": [],
505
+ "classified": false
506
+ },
507
+ {
508
+ "path": ".github/workflows/.release-new-version.yml",
509
+ "signals": [],
510
+ "classified": false
511
+ },
512
+ {
513
+ "path": ".github/workflows/.release-verify.yml",
514
+ "signals": [
515
+ "write-permission",
516
+ "cloud-credential"
517
+ ],
518
+ "classified": true
519
+ },
520
+ {
521
+ "path": ".github/workflows/.sam-release.yml",
522
+ "signals": [],
523
+ "classified": true
524
+ },
525
+ {
526
+ "path": ".github/workflows/.sam-verify.yml",
527
+ "signals": [
528
+ "cloud-credential"
529
+ ],
530
+ "classified": true
531
+ },
532
+ {
533
+ "path": ".github/workflows/.sync-release-page.yml",
534
+ "signals": [],
535
+ "classified": false
536
+ },
537
+ {
538
+ "path": ".github/workflows/.sync-remote-git.yml",
539
+ "signals": [
540
+ "git-push"
541
+ ],
542
+ "classified": true
543
+ },
544
+ {
545
+ "path": ".github/workflows/.web-surface.yml",
546
+ "signals": [
547
+ "write-permission",
548
+ "oidc",
549
+ "environment",
550
+ "cloud-credential"
551
+ ],
552
+ "classified": true
553
+ },
554
+ {
555
+ "path": ".github/workflows/.wheel-release.yml",
556
+ "signals": [],
557
+ "classified": true
558
+ },
559
+ {
560
+ "path": ".github/workflows/.wheel-verify.yml",
561
+ "signals": [
562
+ "cloud-credential"
563
+ ],
564
+ "classified": true
565
+ },
566
+ {
567
+ "path": ".github/workflows/binary-distribution.yml",
568
+ "signals": [],
569
+ "classified": true
570
+ },
571
+ {
572
+ "path": ".github/workflows/binary-release-assets.yml",
573
+ "signals": [
574
+ "write-permission"
575
+ ],
576
+ "classified": true
577
+ },
578
+ {
579
+ "path": ".github/workflows/build-surface-fixture.yml",
580
+ "signals": [
581
+ "write-permission",
582
+ "oidc"
583
+ ],
584
+ "classified": true
585
+ },
586
+ {
587
+ "path": ".github/workflows/build.yml",
588
+ "signals": [
589
+ "write-permission",
590
+ "oidc"
591
+ ],
592
+ "classified": true
593
+ },
594
+ {
595
+ "path": ".github/workflows/buildchain-alpha-self-dogfood.yml",
596
+ "signals": [
597
+ "write-permission",
598
+ "oidc"
599
+ ],
600
+ "classified": true
601
+ },
602
+ {
603
+ "path": ".github/workflows/buildchain-patrol-daily.yml",
604
+ "signals": [
605
+ "write-permission"
606
+ ],
607
+ "classified": true
608
+ },
609
+ {
610
+ "path": ".github/workflows/buildchain-patrol-monthly.yml",
611
+ "signals": [
612
+ "write-permission"
613
+ ],
614
+ "classified": true
615
+ },
616
+ {
617
+ "path": ".github/workflows/buildchain-patrol-weekly.yml",
618
+ "signals": [
619
+ "write-permission"
620
+ ],
621
+ "classified": true
622
+ },
623
+ {
624
+ "path": ".github/workflows/buildchain-patrol.yml",
625
+ "signals": [
626
+ "write-permission"
627
+ ],
628
+ "classified": true
629
+ },
630
+ {
631
+ "path": ".github/workflows/buildchain-ref-promotion.yml",
632
+ "signals": [
633
+ "write-permission",
634
+ "oidc"
635
+ ],
636
+ "classified": true
637
+ },
638
+ {
639
+ "path": ".github/workflows/buildchain-stable-candidate-patrol.yml",
640
+ "signals": [
641
+ "write-permission"
642
+ ],
643
+ "classified": true
644
+ },
645
+ {
646
+ "path": ".github/workflows/buildchain-stable-candidate-qualification.yml",
647
+ "signals": [],
648
+ "classified": false
649
+ },
650
+ {
651
+ "path": ".github/workflows/candidate-lab.yml",
652
+ "signals": [],
653
+ "classified": false
654
+ },
655
+ {
656
+ "path": ".github/workflows/check.yml",
657
+ "signals": [],
658
+ "classified": false
659
+ },
660
+ {
661
+ "path": ".github/workflows/dev-pr-auto-merge.yml",
662
+ "signals": [
663
+ "write-permission"
664
+ ],
665
+ "classified": true
666
+ },
667
+ {
668
+ "path": ".github/workflows/npm-publish.yml",
669
+ "signals": [
670
+ "npm-publish"
671
+ ],
672
+ "classified": true
673
+ },
674
+ {
675
+ "path": ".github/workflows/paper-release-sealed.yml",
676
+ "signals": [
677
+ "write-permission",
678
+ "oidc"
679
+ ],
680
+ "classified": true
681
+ },
682
+ {
683
+ "path": ".github/workflows/paper-release.yml",
684
+ "signals": [
685
+ "write-permission",
686
+ "oidc"
687
+ ],
688
+ "classified": true
689
+ },
690
+ {
691
+ "path": ".github/workflows/patrol-daily.yml",
692
+ "signals": [
693
+ "write-permission"
694
+ ],
695
+ "classified": true
696
+ },
697
+ {
698
+ "path": ".github/workflows/patrol-monthly.yml",
699
+ "signals": [
700
+ "write-permission"
701
+ ],
702
+ "classified": true
703
+ },
704
+ {
705
+ "path": ".github/workflows/patrol-weekly.yml",
706
+ "signals": [
707
+ "write-permission"
708
+ ],
709
+ "classified": true
710
+ },
711
+ {
712
+ "path": ".github/workflows/publication-artifact.yml",
713
+ "signals": [
714
+ "write-permission"
715
+ ],
716
+ "classified": true
717
+ },
718
+ {
719
+ "path": ".github/workflows/release-candidate-promote.yml",
720
+ "signals": [
721
+ "write-permission",
722
+ "oidc"
723
+ ],
724
+ "classified": true
725
+ },
726
+ {
727
+ "path": ".github/workflows/release-line-bootstrap.yml",
728
+ "signals": [
729
+ "write-permission",
730
+ "git-push"
731
+ ],
732
+ "classified": true
733
+ },
734
+ {
735
+ "path": ".github/workflows/release-new-version.yml",
736
+ "signals": [],
737
+ "classified": false
738
+ },
739
+ {
740
+ "path": ".github/workflows/release-propagation.yml",
741
+ "signals": [
742
+ "write-permission",
743
+ "git-push"
744
+ ],
745
+ "classified": true
746
+ },
747
+ {
748
+ "path": ".github/workflows/release-verify.yml",
749
+ "signals": [
750
+ "write-permission"
751
+ ],
752
+ "classified": true
753
+ },
754
+ {
755
+ "path": ".github/workflows/schedule-purge-artifacts.yml",
756
+ "signals": [],
757
+ "classified": false
758
+ },
759
+ {
760
+ "path": ".github/workflows/self-hosted-runner-smoke.yml",
761
+ "signals": [],
762
+ "classified": false
763
+ },
764
+ {
765
+ "path": ".github/workflows/stable-candidate-patrol.yml",
766
+ "signals": [
767
+ "write-permission"
768
+ ],
769
+ "classified": true
770
+ },
771
+ {
772
+ "path": ".github/workflows/verify.yml",
773
+ "signals": [],
774
+ "classified": false
775
+ }
776
+ ],
777
+ "registryDigest": "760215fb39e6c85890c925e924c538a766d78abd6319794c8799fb47c23dec3d"
778
+ }