Skip to content

Commit c7feecf

Browse files
committed
build: remove listMergedPRs usage
1 parent c1158be commit c7feecf

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -532,23 +532,22 @@ publishing {
532532

533533
defaultTasks 'buildLanguages'
534534

535-
def listMergedPRs = {
535+
/* def listMergedPRs = {
536536
def stdout = new ByteArrayOutputStream()
537537
exec {
538538
commandLine 'sh', './listMergedPRs.sh'
539539
standardOutput = stdout
540540
}
541541
stdout.toString()
542-
}
542+
} */
543543

544544
def currentDate = LocalDate.now().format(DateTimeFormatter.ofLocalizedDate(FormatStyle.FULL))
545-
def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
545+
//def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
546546
def langLibDeps = project.configurations.languageLibs.resolvedConfiguration.lenientConfiguration.allModuleDependencies
547547
def depsList = langLibDeps.collect {"- `${it.moduleGroup}:${it.moduleName}` : `${it.moduleVersion}`"}.join("\n")
548548
def releaseNotes = """Automated Nighly build from ${currentDate}.
549549
550-
Included pull requests since last Nightly build:
551-
${prCommitsList}
550+
552551
553552
Includes dependencies:
554553
${depsList}

0 commit comments

Comments
 (0)