Skip to content

Commit

Permalink
fix: Decrease verbosity of GenerateChangeLogTask task
Browse files Browse the repository at this point in the history
Do not set the "--verbose" flag when calling the "changelog" tool
  • Loading branch information
ap0llo committed Dec 28, 2021
1 parent a9d9c69 commit ad3465b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/SharedBuild/Tasks/GenerateChangeLogTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ public override void Run(IBuildContext context)
CurrentVersion = version,
VersionRange = $"[{version}]",
OutputPath = context.Output.ChangeLogFile,
Template = ChangeLogTemplate.GitHubRelease,
Verbose = true
Template = ChangeLogTemplate.GitHubRelease
};

if (context.GitHub.TryGetAccessToken() is string accessToken)
Expand Down

0 comments on commit ad3465b

Please sign in to comment.