Create a GitHub issue template

Create a GitHub issue template for bug reports, feature requests, or questions.

freeworks offlinenothing uploaded
ToolIssue Template Generator
Input
Output

How it works

The selected issue type, title prefix, labels, and prompts are inserted into a Markdown template with headings and HTML comments for guidance. The result is named for placement under .github/ISSUE_TEMPLATE.

  • Common triage categories are used as starting templates.
  • HTML comments keep editing instructions hidden in the rendered issue.

Worked example

Generate a bug report template
Create a GitHub issue template for bug reports
Input
											bug
										
Output
												---
name: Bug Report
about: Report a bug in Project
title: "[BUG] "
labels: bug
assignees: ''
---

## Bug Description
A clear and concise description of what the bug is.

## Steps to Reproduce
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error

## Expected Behavior
A clear and concise description of what you expected to happen.

## Actual Behavior
A clear and concise description of what actually happened.

## Screenshots
If applicable, add screenshots to help explain your problem.

## Environment
- OS: [e.g., Windows 11, macOS 14, Ubuntu 22.04]
- Browser: [e.g., Chrome 120, Firefox 121]
- Version: [e.g., 1.0.0]

## Additional Context
Add any other context about the problem…
											

When to use this

GitHub repositories standardize reproduction steps, feature motivation, and question details.

Edge cases

  • A nonexistent label is emitted as text and will not auto-apply.
  • A title prefix containing brackets changes how issues appear in lists.
  • Essential instructions should remain visible because comments are hidden after rendering.

References