Вы должны сбросить переменную " json " в ноль, если вам больше не нужна эта переменная: -
def json = new JsonSlurper().parseText(content)
def pullrequests = json.values;
for (int i = 0; i < pullrequests.size(); i++) {
stage("Processing Pull Request ID : ${pullrequests[i].id}"){
echo "${pullrequests[i].source.branch.name}"
echo "${pullrequests[i].destination.branch.name}"
echo "${pullrequests[i].destination.repository.full_name}"
}
// unset response because it's not serializable and Jenkins throws NotSerializableException.
json = null
Для получения дополнительной информации перейдите по этой ссылке