We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d9732 commit a5b986dCopy full SHA for a5b986d
1 file changed
project/ChangelogPlugin.scala
@@ -70,7 +70,7 @@ object ChangelogPlugin extends AutoPlugin {
70
Seq(generateChangelogToken := None, generateChangelog := {
71
val log = streams.value.log
72
val parameters = githubChangeLogParser.parsed
73
- Seq("github_changelog_generator", "--token", parameters.token) ! log match {
+ Seq("github_changelog_generator", "--user", "sbt", "--project", "sbt-native-packager", "--token", parameters.token) ! log match {
74
case 0 => log.success("CHANGELOG.md updated successfully")
75
case n => sys.error(s"Failed updating CHANGELOG.md. Process existed with status code $n")
76
}
0 commit comments