generated from EclipseFdn/.eclipsefdn-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathadoptium.jsonnet
757 lines (751 loc) · 23.5 KB
/
adoptium.jsonnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
local orgsOrig = import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet';
// Set Adoptium specific defaults here
local newAdoptiumRepo(name) = orgsOrig.newRepo(name) {
dependabot_security_updates_enabled: true,
private_vulnerability_reporting_enabled: true,
web_commit_signoff_required: false,
};
local orgs = (import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet') + {
newRepo::newAdoptiumRepo
};
local newMirrorRepo(repoName) = orgs.newRepo(repoName) {
allow_merge_commit: true,
allow_update_branch: false,
auto_init: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_alerts_enabled: false,
dependabot_security_updates_enabled: false,
has_issues: false,
has_projects: false,
has_wiki: false,
homepage: "https://adoptium.net",
secret_scanning: "disabled",
secret_scanning_push_protection: "disabled",
description: "This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.",
workflows+: {
enabled: false,
},
};
local extractVersion(name) =
local prefix = "temurin";
local suffix = "-binaries";
local versionStart = std.length(prefix);
local versionEnd = std.length(name) - std.length(suffix);
if std.startsWith(name, prefix) && std.endsWith(name, suffix) then
std.substr(name, versionStart, versionEnd - versionStart)
else
"unknown";
local newBinaryRepo(repoName) = orgs.newRepo(repoName) {
description: "Temurin %s binaries" % [extractVersion(repoName)],
dependabot_alerts_enabled: false,
dependabot_security_updates_enabled: false,
has_issues: false,
has_projects: false,
has_wiki: false,
homepage: "https://adoptium.net",
};
orgs.newOrg('adoptium') {
settings+: {
blog: "https://adoptium.net",
description: "The Adoptium Working Group promotes and supports high-quality runtimes and associated technology for use across the Java ecosystem",
name: "Eclipse Adoptium",
security_managers+: [
"adoptium-aqavit-project-leads",
"adoptium-project-leads",
"adoptium-temurin-project-leads"
],
twitter_username: "adoptium",
web_commit_signoff_required: false,
},
secrets+: [
orgs.newOrgSecret('ADOPTIUM_AQAVIT_BOT_TOKEN') {
value: "pass:bots/adoptium.aqavit/github.com/project-token",
},
orgs.newOrgSecret('ADOPTIUM_BOT_TOKEN') {
value: "pass:bots/adoptium/github.com/project-token",
},
orgs.newOrgSecret('ADOPTIUM_TEMURIN_BOT_TOKEN') {
value: "pass:bots/adoptium.temurin/github.com/project-token",
},
orgs.newOrgSecret('SLACK_WEBHOOK_CODEFREEZE_URL') {
value: "pass:bots/adoptium/github.com/slack-webhook-codefreeze-url",
},
],
_repositories+:: [
orgs.extendRepo('.eclipsefdn') {
private_vulnerability_reporting_enabled: true,
},
orgs.newRepo('.github') {
allow_auto_merge: true,
branch_protection_rules: [
orgs.newBranchProtectionRule('main'),
],
},
orgs.newRepo('Incubator') {
allow_merge_commit: true,
description: "Adoptium Incubator project",
},
orgs.newRepo('STF') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
description: "The System Test Framework for executing https://github.com/adoptium/aqa-systemtest",
},
orgs.newRepo('TKG') {
allow_merge_commit: true,
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
description: "TestKitGen (TKG)",
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('adoptium') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
has_discussions: true,
homepage: "https://adoptium.net",
topics+: [
"adoptium",
"aqavit",
"eclipse",
"java",
"temurin"
],
},
orgs.newRepo('adoptium-support') {
description: "For end-user problems reported with our binary distributions",
has_discussions: true,
},
orgs.newRepo('adoptium.net') {
allow_auto_merge: true,
description: "Adoptium Website",
homepage: "https://adoptium.net",
topics+: [
"hacktoberfest"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"Lint Code Base",
"Run CI",
"netlify:netlify/eclipsefdn-adoptium/deploy-preview"
],
},
],
secrets: [
orgs.newRepoSecret('CODECOV_TOKEN') {
value: "pass:bots/adoptium/codecov/adoptium-net-token",
},
],
},
orgs.newRepo('adoptium.net-redesign') {
allow_auto_merge: true,
description: "Adoptium Website",
homepage: "https://adoptium-rewrite.netlify.app/",
topics+: [
"hacktoberfest"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"Lint Code Base",
"Run CI",
"netlify:netlify/adoptium-rewrite/deploy-preview"
],
},
],
secrets: [
orgs.newRepoSecret('CODECOV_TOKEN') {
value: "pass:bots/adoptium/codecov/adoptium-redesign-token",
},
],
},
orgs.newRepo('api.adoptium.net') {
allow_merge_commit: true,
allow_squash_merge: false,
allow_update_branch: false,
delete_branch_on_merge: false,
description: "Adoptium API 🚀",
homepage: "https://api.adoptium.net",
topics+: [
"adoptium",
"api",
"hacktoberfest",
"java",
"openjdk",
"restful-api",
"swagger",
"temurin"
],
workflows+: {
allowed_actions: "selected",
},
secrets: [
orgs.newRepoSecret('AZURE_CLIENT_ID') {
value: "pass:bots/adoptium/azure/azure-client-id",
},
orgs.newRepoSecret('AZURE_CLIENT_ID_OIDC') {
value: "pass:bots/adoptium/azure/azure-client-id-oidc",
},
orgs.newRepoSecret('AZURE_CLIENT_SECRET') {
value: "pass:bots/adoptium/azure/azure-client-secret",
},
orgs.newRepoSecret('AZURE_SUBSCRIPTION_ID') {
value: "pass:bots/adoptium/azure/azure-subscription-id",
},
orgs.newRepoSecret('AZURE_TENANT_ID') {
value: "pass:bots/adoptium/azure/azure-tenant-id",
},
orgs.newRepoSecret('DIGITALOCEAN_ACCESS_TOKEN') {
value: "pass:bots/adoptium/digitalocean.com/access-token",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('production') {
required_approving_review_count: 1,
required_status_checks+: [
"Build (adoptium)",
"Build (adoptopenjdk)"
],
},
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"Build (adoptium)",
"Build (adoptopenjdk)"
],
},
],
},
orgs.newRepo('marketplace-api.adoptium.net') {
allow_merge_commit: true,
allow_squash_merge: false,
allow_update_branch: false,
description: "Adoptium Marketplace API 🚀",
homepage: "https://marketplace-api.adoptium.net",
topics+: [
"adoptium",
"api",
"hacktoberfest",
"java",
"openjdk",
"restful-api",
"swagger",
"temurin"
],
workflows+: {
allowed_actions: "selected",
},
secrets: [
orgs.newRepoSecret('AZURE_CLIENT_ID') {
value: "pass:bots/adoptium/azure/azure-client-id",
},
orgs.newRepoSecret('AZURE_CLIENT_ID_OIDC') {
value: "pass:bots/adoptium/azure/azure-client-id-oidc",
},
orgs.newRepoSecret('AZURE_CLIENT_SECRET') {
value: "pass:bots/adoptium/azure/azure-client-secret",
},
orgs.newRepoSecret('AZURE_SUBSCRIPTION_ID') {
value: "pass:bots/adoptium/azure/azure-subscription-id",
},
orgs.newRepoSecret('AZURE_TENANT_ID') {
value: "pass:bots/adoptium/azure/azure-tenant-id",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('production') {
required_approving_review_count: 1,
required_status_checks+: [
"build"
],
},
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"build"
],
},
],
},
orgs.newRepo('aqa-systemtest') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
description: "Java load testing and other full system application tests",
},
orgs.newRepo('aqa-test-tools') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
description: "Home of Test Results Summary Service (TRSS) and PerfNext. These tools are designed to improve our ability to monitor and triage tests at the Adoptium project. The code is generic enough that it is extensible for use by any project that needs to monitor multiple CI servers and aggregate their results.",
},
orgs.newRepo('aqa-tests') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
description: "Home of test infrastructure for Adoptium builds",
homepage: "https://adoptium.net/aqavit",
topics+: [
"openjdk-tests",
"tests"
],
webhooks: [
orgs.newRepoWebhook('https://ci.adoptium.net/ghprbhook/') {
events+: [
"issue_comment",
"pull_request"
],
secret: "pass:bots/adoptium/github.com/ci-webhook-secret",
},
],
secrets: [
orgs.newRepoSecret('JENKINS_WORKFLOW_SECRET') {
value: "********",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
orgs.newBranchProtectionRule('*-release') {
required_approving_review_count: 1,
},
],
},
orgs.newRepo('blog.adoptium.net') {
archived: true,
description: "The official Adoptium Blog",
homepage: "https://blog.adoptium.net",
topics+: [
"adoptium",
"blog",
"eclipse",
"gatsby",
"openjdk"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"Check on macos-latest",
"Check on ubuntu-latest",
"Check on windows-latest",
"netlify:netlify/eclipsefdn-adoptium-blog/deploy-preview"
],
},
],
},
orgs.newRepo('build-jdk') {
allow_merge_commit: true,
allow_update_branch: false,
default_branch: "master",
description: "Github action for building JDKs that utilizes the build scripts from the openjdk-build repo",
},
orgs.newRepo('bumblebench') {
allow_update_branch: false,
default_branch: "master",
description: "A microbenchmarking test framework for Eclipse Adoptium",
topics+: [
"benchmark",
"java",
"performance"
],
},
orgs.newRepo('ci-jenkins-pipelines') {
allow_auto_merge: true,
default_branch: "master",
description: "jenkins pipeline build scripts",
topics+: [
"hacktoberfest",
"jenkins",
"pipeline"
],
webhooks: [
orgs.newRepoWebhook('https://ci.adoptium.net/github-webhook/') {
active: false,
events+: [
"commit_comment",
"issue_comment",
"issues",
"label",
"pull_request",
"pull_request_review",
"pull_request_review_comment",
"push"
],
},
orgs.newRepoWebhook('https://ci.adoptium.net/ghprbhook/') {
events+: [
"issue_comment",
"pull_request"
],
secret: "pass:bots/adoptium/github.com/ci-webhook-secret",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('containers') {
allow_auto_merge: true,
description: "Repo containing the dockerfiles and scripts to produce the official eclipse-temurin containers.",
has_wiki: false,
homepage: "https://hub.docker.com/_/eclipse-temurin/",
topics+: [
"containers",
"docker",
"dockerfile",
"dockerfiles",
"dockerhub",
"hacktoberfest"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_status_checks+: [
"conclusion"
],
},
],
secrets: [
orgs.newRepoSecret('DOCKERHUB_USERNAME') {
value: "pass:bots/adoptium/docker.com/username",
},
orgs.newRepoSecret('DOCKERHUB_PASSWORD') {
value: "pass:bots/adoptium/docker.com/token",
}
],
},
orgs.newRepo('dash.adoptium.net') {
allow_auto_merge: true,
description: "Download tracking dashboard",
homepage: "https://dash.adoptium.net/",
topics+: [
"adoptium",
"dashboard",
"eclipse",
"openjdk",
"react"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"Lint Code Base",
"Run CI",
"netlify:netlify/eclipsefdn-adoptium-dash/deploy-preview"
],
},
],
},
orgs.newRepo('documentation') {
archived: true,
description: "The new documentation for adoptium.net will be initially created in this repo",
topics+: [
"documentation",
"hacktoberfest"
],
},
orgs.newRepo('documentation-services') {
archived: true,
},
orgs.newRepo('emt4j') {
allow_merge_commit: true,
default_branch: "master",
description: "Eclipse Migration Toolkit for Java",
},
orgs.newRepo('github-release-scripts') {
allow_auto_merge: true,
default_branch: "master",
description: "Scripts for release artefacts to GitHub releases",
topics+: [
"github"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('infrastructure') {
default_branch: "master",
description: "This repo contains all information about machine maintenance.",
topics+: [
"ansible",
"backup",
"hacktoberfest",
"infrastructure",
"infrastructure-systems",
"nagios"
],
webhooks: [
orgs.newRepoWebhook('https://ci.adoptium.net/github-webhook/') {
events+: [
"push"
],
},
],
secrets: [
orgs.newRepoSecret('DOCKER_PASSWORD') {
value: "pass:bots/adoptium/docker.com/password",
},
orgs.newRepoSecret('DOCKER_USERNAME') {
value: "pass:bots/adoptium/docker.com/username",
},
orgs.newRepoSecret('DOCKER_TOKEN') {
value: "pass:bots/adoptium/docker.com/token",
},
orgs.newRepoSecret('ORKA_VPN_USERNAME') {
value: "pass:bots/adoptium/macstadium.com/orka-vpn-username",
},
orgs.newRepoSecret('ORKA_VPN_PASSWORD') {
value: "pass:bots/adoptium/macstadium.com/orka-vpn-password",
},
orgs.newRepoSecret('ORKA_VPN_SERVER_CERT') {
value: "pass:bots/adoptium/macstadium.com/orka-vpn-cert",
},
orgs.newRepoSecret('ORKA_TOKEN') {
value: "pass:bots/adoptium/macstadium.com/orka-token",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('installer') {
allow_auto_merge: true,
default_branch: "master",
description: "Installer scripts for Eclipse Temurin binaries",
topics+: [
"hacktoberfest",
"installer"
],
secrets: [
orgs.newRepoSecret('ARTIFACTORY_PASSWORD') {
value: "pass:bots/adoptium/artifactory/password",
},
orgs.newRepoSecret('ARTIFACTORY_USER') {
value: "pass:bots/adoptium/artifactory/username",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
newMirrorRepo('aarch32-jdk8u') {},
newMirrorRepo('aarch32-jdk8u_hg') {
archived: true,
description: "Mirror of the Mercurial Forest for the Linux Aarch32 port from",
homepage: "https://hg.openjdk.java.net/aarch32-port/jdk8u",
},
newMirrorRepo('alpine-jdk8u') {},
newMirrorRepo('jdk') {},
newMirrorRepo('jdk11u') {},
newMirrorRepo('riscv-port-jdk11u') {
default_branch: 'riscv-port'
},
newMirrorRepo('jdk11u-fast-startup-incubator') {},
newMirrorRepo('jdk16u') {},
newMirrorRepo('jdk17') {
archived: true,
},
newMirrorRepo('jdk17u') {},
newMirrorRepo('jdk18') {
archived: true,
},
newMirrorRepo('jdk18u') {},
newMirrorRepo('jdk19') {
archived: true,
},
newMirrorRepo('jdk19u') {},
newMirrorRepo('jdk20') {
archived: true,
},
newMirrorRepo('jdk20u') {},
newMirrorRepo('jdk21') {
archived: true
},
newMirrorRepo('jdk21u') {},
newMirrorRepo('jdk22') {
archived: true
},
newMirrorRepo('jdk22u') {},
newMirrorRepo('jdk8u') {},
newMirrorRepo('jdk8u_hg') {
archived: true,
},
orgs.newRepo('jenkins-helper') {
default_branch: "master",
description: "Jenkins Node helper API and helper jobs ",
topics+: [
"adoptium",
"groovy",
"jenkins",
"jenkins-helper"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('jmc-build') {
allow_merge_commit: true,
description: "Contains the Adoptium specific source code overrides and build pipeline script for the Java Mission Control project.",
has_wiki: false,
topics+: [
"hacktoberfest"
],
secrets: [
orgs.newRepoSecret('ARTIFACTORY_PASSWORD') {
value: "pass:bots/adoptium/artifactory/password",
},
orgs.newRepoSecret('ARTIFACTORY_USER') {
value: "pass:bots/adoptium/artifactory/username",
},
],
},
orgs.newRepo('marketplace-data') {
allow_auto_merge: true,
allow_merge_commit: true,
description: "The official source of Marketplace data (JSON) for feeding Eclipse Temurin binaries to the Marketplace API 💾",
has_issues: false,
homepage: "https://marketplace-api.adoptium.net/",
secrets: [
orgs.newRepoSecret('TEMURIN_RSA_PRIVATE') {
value: "pass:bots/adoptium/github.com/temurin-rsa-private",
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
required_status_checks+: [
"call-adoptium-verifier / validate"
],
},
],
},
orgs.newRepo('mirror-scripts') {
default_branch: "master",
description: "OpenJDK source mirroring scripts used by",
homepage: "https://ci.adoptium.net/view/git-mirrors/job/git-mirrors/job/adoptium/",
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('obsolete---adoptium.net') {
archived: true,
description: "Development of the website has moved to https://github.com/adoptium/website-v2",
homepage: "https://github.com/adoptium/website-v2",
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: null,
requires_pull_request: false,
},
],
},
orgs.newRepo('openj9-systemtest') {
allow_merge_commit: true,
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Long running J9 tests",
private_vulnerability_reporting_enabled: true,
web_commit_signoff_required: false,
workflows+: {
default_workflow_permissions: "write",
},
webhooks: [
orgs.newRepoWebhook('https://ci.eclipse.org/openj9/ghprbhook/') {
events+: [
"issue_comment",
"pull_request",
"push"
],
},
],
},
orgs.newRepo('run-aqa') {
allow_merge_commit: true,
default_branch: "master",
description: "Repository for the Github Action that enables the running of the Adoptium Quality Assurance (AQA) tests",
topics+: [
"adoptopenjdk",
"aqa-tests"
],
},
orgs.newRepo('temurin') {
allow_auto_merge: true,
description: "Eclipse Temurin™ project assets",
has_wiki: false,
homepage: "https://adoptium.net/temurin",
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
},
],
},
orgs.newRepo('temurin-build') {
allow_auto_merge: true,
default_branch: "master",
description: "Eclipse Temurin™ build scripts - common across all releases/versions",
topics+: [
"cacert",
"docker-commands",
"docker-container",
"docker-group",
"hacktoberfest",
"shell-script",
"temurin"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master'),
],
},
orgs.newRepo('temurin-cpe-generator') {
allow_auto_merge: true,
description: "A tool to generate NIST CPE directory entries for Eclipse Temurin using the Adoptium API.",
homepage: "https://adoptium.net/temurin",
branch_protection_rules: [
orgs.newBranchProtectionRule('main') {
required_approving_review_count: 1,
},
],
},
orgs.newRepo('temurin-vdr-generator') {
allow_auto_merge: true,
description: "Scripts for generating Vulnerability Disclosure Reports",
topics+: [
"secure-dev"
],
branch_protection_rules: [
orgs.newBranchProtectionRule('main'),
],
secrets: [
orgs.newRepoSecret('NIST_NVD_TOKEN') {
value: "pass:bots/adoptium/nist/nist-nvd-api-token",
},
],
},
orgs.newRepo('devkit-binaries') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Repository for Adoptium OpenJDK DevKit builds",
has_issues: false,
},
newBinaryRepo('temurin11-binaries') {},
newBinaryRepo('temurin16-binaries') {},
newBinaryRepo('temurin17-binaries') {},
newBinaryRepo('temurin18-binaries') {},
newBinaryRepo('temurin19-binaries') {},
newBinaryRepo('temurin20-binaries') {},
newBinaryRepo('temurin21-binaries') {},
newBinaryRepo('temurin22-binaries') {},
newBinaryRepo('temurin23-binaries') {},
newBinaryRepo('temurin24-binaries') {},
newBinaryRepo('temurin8-binaries') {},
],
}