Skip to content

Instantly share code, notes, and snippets.

@rmkanda
Created September 23, 2021 06:18
Show Gist options
  • Save rmkanda/d2712799de321a1060119c36bc6bad6b to your computer and use it in GitHub Desktop.
Save rmkanda/d2712799de321a1060119c36bc6bad6b to your computer and use it in GitHub Desktop.
def getChangeLogSize() {
def allChangeSets = currentBuild.changeSets
if (allChangeSets && !allChangeSets.size()>0)
{
if (allChangeSets[0].items && allChangeSets[0].items.size()>0)
{
return allChangeSets[0].items.size()
}
}
return 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment