mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-12-23 09:28:06 +01:00
6 lines
218 B
Groovy
6 lines
218 B
Groovy
ext.getReleaseChangelog = {
|
|
def changelogFile = file('CHANGELOG.md')
|
|
def changelog = "## [${changelogFile.text.split('\n## \\[')[1]}\n\n" // ${project.github}/blob/${branch}/CHANGELOG.md
|
|
return changelog
|
|
}
|