I have 3 test commands to run on post build but I want to run these commands based on keyword in the git commit message.
Commit message: 'New changes [CoreTest]'
if(CoreTest){
Run coreTest shell command for spoon
}else if(CloudTest){
Run CloudTest shell command for spoon
}
else{
AllTests shell command for spoon
}