Resolution
You can run the following from the Script Console ($JENKINS_URL/script
):
def job = Jenkins.instance.getItemByFullName("folderName/my-pipeline-job") job.nextBuildNumber = 10 job.save()
Replace folderName/my-pipeline-job
with your folder/job name and 10
with the desired next build number.