gocd-yaml-config-plugin
gocd-yaml-config-plugin copied to clipboard
Plugin to declare GoCD pipelines and environments configuration in YAML
# Templates in configuration repositories In my understanding GoCD pipeline templates were introduced at all is because any organization faces **some similarity** in the pipelines they declare. User can have...
https://github.com/tomzo/gocd-yaml-config-plugin/blob/70ebfc7076b7e26b63d4f257f9f10f474fba651d/src/main/java/cd/go/plugin/config/yaml/YamlConfigPlugin.java#L271 is this how it should be ?
Is it possible to have multibranch pipelines with some steps executed only on certain branches only? I can't find any example about it. or branch must be hardcoded per pipeline...
For some reason GoCD and gocd-yaml-config-plugin is not exporting some pipelines created through the wizard of GoCD. We created some pipelines using the UI and for some reason we have...
[Parallel test execution maxParallelForks](https://docs.gradle.org/current/userguide/performance.html#parallel_test_execution). Gradle can run multiple test cases in parallel by setting `maxParallelForks`. [Disable report generation](https://docs.gradle.org/current/userguide/performance.html#report_generation). We can conditionally disable it by setting `reports.html.required = false; reports.junitXml.required =...
 This should be done via yaml code like below ```YAML #ci.gocd.yaml format_version: 9 environments: testing: pipelines: - example-deploy-testing - build-testing pipelines: mypipe1: # definition of mypipe1 pipeline group: mygroup...
I suggest that the plugin uses a yaml parser that supports the full yaml 1.1 syntax. The current yamlbeans parser is incomplete and causes confusion when it's not able to...
Hi, I'm trying to figure out how to load a password from the bundled [file secret plugin](https://docs.gocd.org/current/configuration/secrets_management.html) from gocd into the yaml but so far no success. Here is my...
Need to support the scm ref for the plugin config itself. I am not talking about plugable scm for the pipeline. Want to do something like this ``` url mygit_repo...
We would like to integrate the plugin ashwanthkumar/gocd-build-github-pull-requests.. Currently we are doing with manual templates, I would like to be able to add by yaml code, thank you very much...