You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<value>La demande de tirage fermée n'a aucun fichier modifié. Fermeture du problème validé associé. Si vous devez mettre à jour la ressource, veuillez créer un nouveau problème. Merci!</value>
<value>The closed pull request has no files changed. Closing the related validated issue. If you need to update the resource, please create a new issue. Thank you!</value>
_logger.LogInformation("GitHub Webhook event saved to database.");
61
-
62
61
switch(action)
63
62
{
64
63
caseIssueCommentActionValue.Created:
@@ -69,6 +68,7 @@ public async Task SaveAndProcessIssueCommentEventAsync(WebhookHeaders headers, I
69
68
_logger.LogInformation("Not supported action for processing the issue comment.");
70
69
break;
71
70
}
71
+
_logger.LogInformation("GitHub Webhook event saved to database and processed for Issue# {number} with action - {action}...",(issueCommentEvent?.Issue.Number),issueCommentEvent?.Action);
_logger.LogInformation("Starting the process of the PullRequest event for PR# {number} with action - {action}...",(pullRequestEvent?.PullRequest.Number),pullRequestEvent?.Action);
_logger.LogInformation("Not supported action for processing the pull request.");
38
+
}
39
+
40
+
_logger.LogInformation("GitHub Webhook event saved to database and processed for PR# {number} with action - {action}...",(pullRequestEvent?.PullRequest.Number),pullRequestEvent?.Action);
_logger.LogInformation("--> Bypassing GitHub Webhook event for PR# {Number} with action: {Action} in repository {RepoName}",pullRequestEvent?.PullRequest?.Number,pullRequestEvent?.Action,pullRequestEvent?.Repository?.Name);
0 commit comments