Skip to content

Commit

Permalink
Fix typo in log of GitHubActionInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Feb 27, 2022
1 parent c536057 commit 6b22cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet-releaser/Helpers/GitHubActionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public record GitHubActionInfo(string OwnerName, string RepoName, string EventNa
{
public override string ToString()
{
return $"user = {OwnerName}, repo = ${RepoName}, event = {EventName}, ref_name = {RefName}, ref_type = {RefType.ToString().ToLowerInvariant()}";
return $"user = {OwnerName}, repo = {RepoName}, event = {EventName}, ref_name = {RefName}, ref_type = {RefType.ToString().ToLowerInvariant()}";
}
}

Expand Down

0 comments on commit 6b22cc9

Please sign in to comment.