GitHub Issue Templates

Creates issue templates in GitHub for bug reports, feature requests and code maintenance.
Icons/chart bar
Used 15 times
Created by
D Dale Zak

Usage

Run this command in your Rails app directory in the terminal:

rails app:template LOCATION="https://railsbytes.com/script/XvEs4K"
Template Source

Review the code before running this template on your machine.

file '.github/ISSUE_TEMPLATE/bug-report.md', <<-CODE
---
name: Bug Report
about: Report something that is broken or not working as intended
title: ''
labels: ''
assignees: ''
---

#### Expected Behaviour

#### Actual Behaviour

#### Steps to Reproduce
-

CODE

file '.github/ISSUE_TEMPLATE/feature-request.md', <<-CODE
---
name: Feature Request
about: Suggest an idea for a new feature or enhancement to existing features
title: ''
labels: ''
assignees: ''
---

#### Describe Problem

#### Suggest Solution

#### Additional Details

CODE

file '.github/ISSUE_TEMPLATE/code-maintenance.md', <<-CODE
---
name: Code Maintenance
about: Project cleanup, improve documentation, refactor code
title: ''
labels: ''
assignees: ''
---

#### Describe Problem

#### Suggest Changes

#### Provide Examples

CODE
Comments

Sign up or Login to leave a comment.