Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d5ae32d
fix: build repo url pattern
ferruhcihan Oct 15, 2025
03a89dd
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 21, 2025
da0eb37
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 24, 2025
864598b
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 27, 2025
0b123a8
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 27, 2025
1352d6c
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 27, 2025
3bf4ace
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 31, 2025
c1d67e6
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Oct 31, 2025
6787642
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 4, 2025
595c009
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 4, 2025
1322012
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 10, 2025
3204163
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 10, 2025
177f0c9
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 10, 2025
7d078f9
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 12, 2025
ee13d07
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 12, 2025
91ed758
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 13, 2025
0fa516b
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 13, 2025
9ab78c9
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 13, 2025
abccc37
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 14, 2025
4a8eea6
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 14, 2025
faf5049
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 14, 2025
5e306a7
Merge remote-tracking branch 'origin/main' into APL-1200
svcAPLBot Nov 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/openapi/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ buildMode:
properties:
repoUrl:
description: The URL of the Git repo that contains the application code.
$ref: 'definitions.yaml#/url'
$ref: 'definitions.yaml#/repoUrl'
title: Repo URL
path:
description: The path to the Dockerfile to execute (defaults to ./Dockerfile).
Expand Down Expand Up @@ -147,7 +147,7 @@ buildMode:
properties:
repoUrl:
description: The URL of the Git repo that contains the application code.
$ref: 'definitions.yaml#/url'
$ref: 'definitions.yaml#/repoUrl'
title: Repo URL
path:
description: 'Optional: A subpath within the repo where the source is located'
Expand Down
4 changes: 2 additions & 2 deletions src/openapi/definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -951,8 +951,8 @@ replicas:
title: Number of replicas
default: 1
repoUrl:
description: Path to a remote git repo without protocol. Will use https to access.
pattern: ^(.+@)*([\w\d\.]+)(:[\d]+){0,1}/*(.*)$
description: Path to a remote git repo without protocol. Will use https or ssh to access.
pattern: ^(https?://|ssh://|file://)?(.+@)*([\w\d\.\-]+)(:([\d]+|[\w\d\.\-\/]+))?/*(.*)$
type: string
x-message: a valid git repo URL
example: github.com/example/repo
Expand Down
Loading