-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3901a3c
commit af010b1
Showing
10 changed files
with
55 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@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/os/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/os/5.2' | ||
|
||
/** | ||
* Forward merge any changes between #originBranch and #targetBranch | ||
*/ | ||
forwardMerger( | ||
targetBranch: targetBranch, | ||
originBranch: originBranch, | ||
slackChannel: '#c5-forward-merge-bot-notifications') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
* @driessamyn @jasonbyrner3 @dimosr @ronanbrowne @rick-r3 @simon-johnson-r3 @blsemo @Omar-awad @aditisdesai @vinir3 @vkolomeyko @thiagoviana @Sakpal | ||
|
||
# Build scripts and Jenkins files should be audited by BLT | ||
# Any changes to source code of corda-api to be reviewd by C5 team leads | ||
|
||
Jenkinsfile @corda/blt | ||
.ci/** @corda/blt | ||
|
||
gradle/* @corda/blt | ||
*.gradle @corda/blt | ||
gradle.properties @corda/corda5-team-leads | ||
|
||
*.kt @corda/corda5-team-leads | ||
*.java @corda/corda5-team-leads | ||
|
||
CODEOWNERS @corda/blt @corda/corda5-team-leads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters