File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -529,24 +529,21 @@ publishing {
529
529
530
530
defaultTasks ' buildLanguages'
531
531
532
- def listMergedPRs = {
532
+ /* def listMergedPRs = {
533
533
def stdout = new ByteArrayOutputStream()
534
534
exec {
535
535
commandLine 'sh', './listMergedPRs.sh'
536
536
standardOutput = stdout
537
537
}
538
538
stdout.toString()
539
- }
539
+ } */
540
540
541
541
def currentDate = LocalDate . now(). format(DateTimeFormatter . ofLocalizedDate(FormatStyle . FULL ))
542
- def prCommitsList = " ${ -> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")} "
542
+ // def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
543
543
def langLibDeps = project. configurations. languageLibs. resolvedConfiguration. lenientConfiguration. allModuleDependencies
544
544
def depsList = langLibDeps. collect {" - `${ it.moduleGroup} :${ it.moduleName} ` : `${ it.moduleVersion} `" }. join(" \n " )
545
545
def releaseNotes = """ Automated Nighly build from ${ currentDate} .
546
546
547
- Included pull requests since last Nightly build:
548
- ${ prCommitsList}
549
-
550
547
Includes dependencies:
551
548
${ depsList}
552
549
"""
You can’t perform that action at this time.
0 commit comments