Skip to content

Commit 5a08587

Browse files
committed
[Infra] Use - instead of * when moving changelog entries around
The merge back action uses the code in `Changelog.kt` to ensure unreleased entries in the CHANGELOG.md files are moved to the corresponding section after being released. Since we have started formatting our markdown files, we rely on `-` as a list marker, rather than `*`, which was the old format. This change updates `Changelog.kt` to use the right character.
1 parent e894db1 commit 5a08587

File tree

1 file changed

+1
-1
lines changed
  • plugins/src/main/java/com/google/firebase/gradle/plugins

1 file changed

+1
-1
lines changed

plugins/src/main/java/com/google/firebase/gradle/plugins/Changelog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ data class ReleaseContent(val subtext: String, val changes: List<Change>) {
326326
*/
327327
data class Change(val type: ChangeType, val message: String) {
328328

329-
override fun toString(): String = "* [$type] $message"
329+
override fun toString(): String = "- [$type] $message"
330330

331331
companion object {
332332
/**

0 commit comments

Comments
 (0)