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
What happened:
Stages is not being rendered in an enclosed section when pipeline template is being validated in a validator. Please see the screenshot.
What you expected to happen:
Stages should be rendered as an enclosed section when validating pipeline template in a validator.
How to reproduce it: Use the yaml below
namespace: sd-test name: example-template version: '1.0.0' description: An example pipeline template for testing golang files maintainer: [email protected] config: ## Stages by grouping shared: image: node:14 steps: - init: echo 'init' jobs: # triggering-stage: # requires: [~pr, ~commit] ci-deploy: requires: [] ci-test: requires: [ci-deploy] ci-certify: requires: [ci-test] triggered-by-stage: requires: [~stage@integration] stages: integration: requires: [~commit] jobs: [ci-deploy, ci-test, ci-certify] description: "This stage will deploy the latest application to the CI environment and certify it after the tests have passed."
and put into the validator
The text was updated successfully, but these errors were encountered:
I think it's because stageName field is missing in workflowGraph
stageName
workflowGraph
Sorry, something went wrong.
No branches or pull requests
What happened:
Stages is not being rendered in an enclosed section when pipeline template is being validated in a validator. Please see the screenshot.
What you expected to happen:
Stages should be rendered as an enclosed section when validating pipeline template in a validator.
How to reproduce it:
Use the yaml below
and put into the validator
The text was updated successfully, but these errors were encountered: