I need to find a way to perform part of my jenkins pipeline only when path trivial rebased.
if GERRIT_EVENT_TYPE=rebase{
stage ('A'){}
}
stage ('B'){}
Each rebase on gerrit creates new patch, I see on job parameters GERRIT_EVENT_TYPE=new_patch.
I know that as part of job configuration I can exclude build trigger on trivial rebase, so the plugin mechanism got the mechanism to recognize trivial rebase as an event, how can I explicit it ? Is there a way to that ?
cloning the repo with -2 depth and the comparing the parent ID doing the job