Skip to content

Commit

Permalink
Merge pull request #205 from corda/merge-release/5.1-release/5.2-2023…
Browse files Browse the repository at this point in the history
…-11-13-1

ES-1621: Merging forward updates from release/5.1 to release/5.2 - 2023-11-13
  • Loading branch information
ronanbrowne authored Nov 13, 2023
2 parents cacb7c1 + d092eb8 commit 5c86cda
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .ci/JenkinsfileMergeAutomation
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
#! groovy
@Library('[email protected]') _

/**
* Forward merge any changes in current branch to the branch with following version.
*
* Please note, the branches names are intentionally separated as variables, to minimised conflicts
* during automated merges for this file.
*
* These variables should be updated when a new version is cut
*/

/**
* the branch name of origin branch, it should match the current branch
* and it acts as a fail-safe inside {@code forwardMerger} pipeline
*/
String originBranch = 'release/5.1'

/**
* the branch name of target branch, it should be the branch with the next version
* after the one in current branch.
*/
String targetBranch = 'release/5.2'

/**
* Forward merge any changes between {@code originBranch} and {@code targetBranch}
*/
forwardMerger(
targetBranch: targetBranch,
originBranch: originBranch,
slackChannel: '#c5-forward-merge-bot-notifications')
#! groovy
@Library('[email protected]') _

/**
* Forward merge any changes in current branch to the branch with following version.
*
* Please note, the branches names are intentionally separated as variables, to minimised conflicts
* during automated merges for this file.
*
* These variables should be updated when a new version is cut
*/

/**
* the branch name of origin branch, it should match the current branch
* and it acts as a fail-safe inside {@code forwardMerger} pipeline
*/
String originBranch = 'release/5.2'

/**
* the branch name of target branch, it should be the branch with the next version
* after the one in current branch.
*/
String targetBranch = 'release/5.3'

/**
* Forward merge any changes between {@code originBranch} and {@code targetBranch}
*/
forwardMerger(
targetBranch: targetBranch,
originBranch: originBranch,
slackChannel: '#c5-forward-merge-bot-notifications')

0 comments on commit 5c86cda

Please sign in to comment.