def call(Map args = [:]) {
    if (env.CHANGE_ID) {
        githubVulnerabilityScan(args)
    } else {
        echo 'Not running GitHub vulnerability scan as this is not a PR build'
    }
}
