File tree 4 files changed +44
-0
lines changed
4 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ teamConfig :
2
+ demo :
3
+ coderepos : []
Original file line number Diff line number Diff line change
1
+ teamConfig :
2
+ demo :
3
+ coderepos :
4
+ - gitService : github
5
+ label : buildpacks-samples
6
+ private : false
7
+ repositoryUrl : https://github.com/buildpacks/samples
Original file line number Diff line number Diff line change
1
+ teamConfig :
2
+ demo :
3
+ coderepos : []
Original file line number Diff line number Diff line change @@ -1196,6 +1196,10 @@ definitions:
1196
1196
type : array
1197
1197
items :
1198
1198
$ref : ' #/definitions/build'
1199
+ coderepos :
1200
+ type : array
1201
+ items :
1202
+ $ref : ' #/definitions/coderepo'
1199
1203
teamSelfService :
1200
1204
title : Team permissions
1201
1205
description : Grant team permissions to modify certain configuration parameters.
@@ -1503,6 +1507,33 @@ definitions:
1503
1507
- email
1504
1508
- firstName
1505
1509
- lastName
1510
+ coderepo :
1511
+ type : object
1512
+ description : Define location of code repository to build
1513
+ properties :
1514
+ label :
1515
+ $ref : ' #/definitions/idName'
1516
+ gitService :
1517
+ description : Git service provider
1518
+ type : string
1519
+ default : gitea
1520
+ enum :
1521
+ - gitea
1522
+ - github
1523
+ - gitlab
1524
+ repositoryUrl :
1525
+ description : URL of the Git repository holding the application code.
1526
+ $ref : ' #/definitions/repoUrl'
1527
+ private :
1528
+ type : boolean
1529
+ default : false
1530
+ secret :
1531
+ description : The name of the secret with the credentials of the external private Git repository
1532
+ type : string
1533
+ required :
1534
+ - label
1535
+ - gitService
1536
+ - repositoryUrl
1506
1537
1507
1538
properties :
1508
1539
alerts :
You can’t perform that action at this time.
0 commit comments