-
Bug
-
Resolution: Unresolved
-
Minor
-
None
The changeset should include everything this patchset is trying to integrate into the target branch.
If we use a pipeline like this:
pipeline { agent any stages { stage("Test changeset") { when { changeset 'Jenkinsfile' } steps { sh "Changeset worked!'" } } } }
It displays a message:
Warning, empty changelog. Probably because this is the first build.
[JENKINS-60881] Changeset doesn't get filled on Gerrit change requests
Description |
Original:
If we use a pipeline like this: pipeline { agent any stages { stage("Test changeset") { when { changeset 'Jenkinsfile' } steps { sh "Changeset worked!'" } } } } It displays a message: Warning, empty changelog. Probably because this is the first build. |
New:
The changeset should include everything this patchset is trying to integrate into the target branch. If we use a pipeline like this: pipeline { agent any stages { stage("Test changeset") { when { changeset 'Jenkinsfile' } steps { sh "Changeset worked!'" } } } } It displays a message: Warning, empty changelog. Probably because this is the first build. |
Description |
Original:
The changeset should include everything this patchset is trying to integrate into the target branch. If we use a pipeline like this: pipeline { agent any stages { stage("Test changeset") { when { changeset 'Jenkinsfile' } steps { sh "Changeset worked!'" } } } } It displays a message: Warning, empty changelog. Probably because this is the first build. |
New:
The changeset should include everything this patchset is trying to integrate into the target branch.
If we use a pipeline like this: {code:java} pipeline { agent any stages { stage("Test changeset") { when { changeset 'Jenkinsfile' } steps { sh "Changeset worked!'" } } } } {code} It displays a message: {code} Warning, empty changelog. Probably because this is the first build. {code} |