GitHub Issue Templates
Creates issue templates in GitHub for bug reports, feature requests and code maintenance.
Used 20 times
D
Dale Zak
Usage
For more information on GitHub issue templates, checkout https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository.
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