mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 01:55:47 +01:00
Include link to commit in autopublished changelog
This commit is contained in:
parent
9ed074d0d5
commit
50176dc317
@ -38,7 +38,7 @@ fun Project.latestCommitHash(): String {
|
|||||||
return byteOut.toString(Charsets.UTF_8.name()).trim()
|
return byteOut.toString(Charsets.UTF_8.name()).trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Project.lastCommitMessage(): String {
|
fun Project.latestCommitMessage(): String {
|
||||||
val byteOut = ByteArrayOutputStream()
|
val byteOut = ByteArrayOutputStream()
|
||||||
exec {
|
exec {
|
||||||
commandLine = listOf("git", "log", "-1", "--pretty=%B")
|
commandLine = listOf("git", "log", "-1", "--pretty=%B")
|
||||||
|
@ -50,7 +50,7 @@ val suffixedVersion = if (isRelease) baseVersion else baseVersion + "+" + System
|
|||||||
val changelogContent = if (isRelease) {
|
val changelogContent = if (isRelease) {
|
||||||
"See [GitHub](https://github.com/ViaVersion/ViaVersion) for release notes."
|
"See [GitHub](https://github.com/ViaVersion/ViaVersion) for release notes."
|
||||||
} else {
|
} else {
|
||||||
rootProject.lastCommitMessage()
|
"[${rootProject.latestCommitHash()}](https://github.com/ViaVersion/ViaVersion/commit/${rootProject.latestCommitHash()}) ${rootProject.latestCommitMessage()}"
|
||||||
}
|
}
|
||||||
val isMainBranch = branch == "master"
|
val isMainBranch = branch == "master"
|
||||||
modrinth {
|
modrinth {
|
||||||
|
Loading…
Reference in New Issue
Block a user