List Issue Templates
List all available issue templates that can be added to your repository.
Usage
gh-templates issue list
Options
| Option | Description |
|---|---|
-h, --help | Print help |
Examples
List All Available Templates
gh-templates issue list
This command displays all available issue templates with their filenames and descriptions.
Sample Output
bug - Bug Report Template
chore - Chore Issue Template
community - Report issues or suggestions related to community, collaboration, or project governance.
docs - Report issues or suggest improvements related to documentation, guides, or help content.
dx - Report issues that affect developers' experience
feature - Suggest a new feature or improvement for a project.
refactor - Refactor Issue template for GitHub
support - Ask a question or request support (not for bugs or feature requests)
technical-debt - Technical Debt Issue Template
test - Report issues related to testing or quality assurance.
Understanding Template Names
Template filenames (e.g., bug.yml, feature.yml) can be used directly with the add command:
# Use any template filename from the list
gh-templates issue add bug
gh-templates issue add feature
Template Categories
Templates are typically organized into categories:
- General Purpose:
bug.yml,feature.yml,chore.yml,refactor.yml,technical-debt.yml,test.yml - Community & Support:
community.yml,support.yml - Documentation & Developer Experience:
docs.yml,dx.yml
Next Steps
After reviewing the available templates:
-
Preview templates you're interested in:
gh-templates issue preview bug -
Add templates to your repository:
gh-templates issue add bug feature
Info: When specifying a template name with the
addcommand, you can include the.ymlextension or omit it. Bothgh-templates issue add bugandgh-templates issue add bug.ymlare valid.
Related Commands
- Preview Issue Templates - Preview template content
- Add Issue Templates - Add templates to your repository