We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccadfbe commit 512a9caCopy full SHA for 512a9ca
decoder/manifest-schema.yaml
@@ -19,10 +19,14 @@ properties:
19
description:
20
type: string
21
job-definition-files:
22
+ # Filenames must be url-compliant strings.
23
+ # Here we limited to starting with a letter
24
+ # followed by letters, numbers or . - _
25
+ # and ending '.yaml' or '.yml'
26
type: array
27
items:
28
- pattern: '^.{1,}(.yaml|.yml)$'
29
+ pattern: '^[a-zA-Z]{1,}[a-zA-Z0-9._-]{0,}(.yaml|.yml)$'
30
maxLength: 255
31
minItems: 1
32
required:
0 commit comments