Skip to content

Commit d3a50b5

Browse files
authored
Merge pull request #1498 from jessehouwing/main
Fix log message in RevokeMigratorRoleCommandHandler to correctly indi…
2 parents de2bbb1 + a266ce3 commit d3a50b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Octoshift/Commands/RevokeMigratorRole/RevokeMigratorRoleCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public async Task Handle(RevokeMigratorRoleCommandArgs args)
2222
throw new ArgumentNullException(nameof(args));
2323
}
2424

25-
_log.LogInformation("Granting migrator role ...");
25+
_log.LogInformation("Revoking migrator role ...");
2626

2727
var githubOrgId = await _githubApi.GetOrganizationId(args.GithubOrg);
2828
var success = await _githubApi.RevokeMigratorRole(githubOrgId, args.Actor, args.ActorType);

0 commit comments

Comments
 (0)