DevOps / Github Interview questions
What is GitHub Issues?
GitHub Issues is the built-in tracker for bugs, feature requests, and general tasks tied to a repository. Each issue has a title, description, labels, assignees, and a discussion thread, and can be linked directly to the pull request that resolves it.
Issues support Markdown formatting, task-list checkboxes, and templates (defined in .github/ISSUE_TEMPLATE/) that standardize what information a reporter provides, such as steps to reproduce a bug. Referencing an issue number in a commit or PR description (like Fixes #42) automatically links the two and, once that PR merges, closes the issue.
More Related questions...