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 db87374 commit bfd411fCopy full SHA for bfd411f
src/Web/Webhook.cs
@@ -180,8 +180,10 @@ await notifier.PostAsync(new PushoverMessage
180
}
181
182
183
- static bool IsBot(Octokit.Webhooks.Models.User? user) => user?.Type == UserType.Bot ||
184
- user?.Login.EndsWith("-bot") == true ||
185
- user?.Name?.EndsWith("bot]") == true || user?.Name?.EndsWith("-bot") == true;
+ static bool IsBot(Octokit.Webhooks.Models.User? user) =>
+ user?.Type == UserType.Bot ||
+ user?.Login.EndsWith("-bot") == true ||
186
+ user?.Name?.EndsWith("bot]") == true ||
187
+ user?.Name?.EndsWith("-bot") == true;
188
189
0 commit comments