In my private github repository, I've created a new milestone. I want to add new issues to it.
I click on New issue button but it redirects to the following page:
What should I do?
As a workaround, check if using the GitHub CLI gh
would help.
From Creating an issue with GitHub CLI:
To create an issue, use the
gh issue create
subcommand.
To skip the interactive prompts, include the--body
and the--title
flags.gh issue create --title "My new issue" --body "Here are more details."
You can also specify assignees, labels, milestones, and projects.
gh issue create --title "My new issue" --body "Here are more details." \ --assignee @me,monalisa --label "bug,help wanted" \ --project onboarding --milestone "learning codebase"