We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a job template, which has duplicate keys. openjd check will consider the job template as valid, even though it's not valid yaml.
openjd check
The template will not be considered valid, due to having duplicate keys
The template will be considered valid, even with duplicate keys.
Given the template:
specificationVersion: 'jobtemplate-2023-09' specificationVersion: 'jobtemplate-2023-09' name: Foo name: Foo steps: - name: Bar script: actions: onRun: command: Baz command: Baz onRun: command: Baz command: Baz actions: onRun: command: Baz command: Baz onRun: command: Baz command: Baz
> openjd check template.yaml Template at 'template.yaml' passes validation checks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Given a job template, which has duplicate keys.
openjd check
will consider the job template as valid, even though it's not valid yaml.Expected Behaviour
The template will not be considered valid, due to having duplicate keys
Current Behaviour
The template will be considered valid, even with duplicate keys.
Reproduction Steps
Given the template:
The text was updated successfully, but these errors were encountered: