Ejemplo n.º 1
0
        public async Task CommentOnPullRequestAsync(string repoUri, int pullRequestId, string message)
        {
            _logger.LogInformation($"Adding a comment to PR '{pullRequestId}' in repo '{repoUri}'...");

            await _gitClient.CommentOnPullRequestAsync(repoUri, pullRequestId, message);

            _logger.LogInformation($"Adding a comment to PR '{pullRequestId}' in repo '{repoUri}' succeeded!");
        }