in src/com/epam/digital/data/platform/pipelines/registry/RegistryRegulations.groovy [87:96]
boolean deployStatus(String stageName, String regulationFolderName) {
ArrayList getdeployStatus = getChangedStatusOrFiles("plan", "${stageName}",
"--file ${context.getWorkDir()}/${regulationFolderName}")
if (getdeployStatus.contains("fullDeploy") || getdeployStatus.contains("true")) {
return true
} else {
return false
}
}