Ejemplo n.º 1
0
        /// <inheritdoc/>
        public async Task <bool> CreatePullRequest(string org, string repository, string target, string source, string title)
        {
            CreatePullRequestOption option = new CreatePullRequestOption
            {
                Base  = target,
                Head  = source,
                Title = title
            };

            return(await _gitea.CreatePullRequest(org, repository, option));
        }