How can I programmatically add issues on my Github repository using C#?
I have an Error Handler library (ErrorControlSystem) to attach that in a win application to rai
If you need to create issues on a GitHub repo programmatically with C#, you can refer to the C# project octokit/octokit.net which will use the GitHub API.
It can create issue:
var createIssue = new NewIssue("this thing doesn't work");
var issue = await _issuesClient.Create("octokit", "octokit.net", createIssue);
Create
returns a Task
which represents the created issue.