Skip to content

Commit 1215635

Browse files
Merge pull request #1243 from IETS3/renovate/com.github.breadmoirai.github-release-2.x
2 parents f264d77 + 1e68a01 commit 1215635

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ The project does _not_ follow Semantic Versioning and the changes are documented
1212

1313
- Variability: In the configuration editor, pressing Return/Enter anywhere will create an empty line after the configuration. Pressing Shift-Return/Enter on the header line of a configuration will create an empty line before the configuration.
1414

15+
### Removed
16+
- To enable github release the usage of `listMergedPRs` script is removed for the time beeing.
17+
1518

1619
## July 2025
1720

build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ plugins {
1111
id 'base'
1212
id 'maven-publish'
1313
id 'de.itemis.mps.gradle.common' version '1.29.+'
14+
id "com.github.breadmoirai.github-release" version "2.5.2"
1415
id 'de.itemis.mps.gradle.launcher' version '2.7.0.+'
15-
id "com.github.breadmoirai.github-release" version "2.4.1"
1616
id "org.cyclonedx.bom" version "2.3.1"
1717
}
1818

@@ -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)