Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add issue and pr templates #84

Merged
merged 4 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/issue_template/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Bug Report
description: Found a bug? Please let us know!
title: "[Bug]"
labels: ["Bug"]
body:
- type: markdown
attributes:
value: |
Please provide as much information as possible. This will help us resolve the Bug quickly and accurately.
- type: markdown
attributes:
value: ---
- type: textarea
id: what-happened
attributes:
label: What is the problem?
description: |
Description of what needs to be fixed.
placeholder: Tell us what you see!
validations:
required: true
- type: input
id: os
attributes:
label: Operating System
description: What is the affected operating system?
validations:
required: true
- type: input
id: arch
attributes:
label: Architecture Version (x86, x64, arm, etc)
description: (x86, x64, arm, etc)
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: |
This includes the steps for reproducing the problem, the expected result, and the actual result.
placeholder: |
1. ...
2. ...
3. ...
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
28 changes: 28 additions & 0 deletions .github/issue_template/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Feature Request
description: Suggest a new idea for go-blueprint.
title: "[Feature Request] "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Please provide as much information as possible by filling out form below.
- type: markdown
attributes:
value: ---
- type: textarea
id: idea
attributes:
label: Tell us about your feature request
description: |
Describe what you would like go-blueprint to be able to do.
validations:
required: true
- type: checkboxes
id: disclaimer
attributes:
label: Disclaimer
description: I have verified that this has not been suggested before.
options:
- label: I agree
required: true
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.

## Problem/Feature

Please include a description of the problem or feature this PR is addressing.

## Description of Changes:

- Item 1
- Item 2

## Checklist

- [ ] I have self-reviewed the changes being requested
- [ ] I have updated the documentation (if applicable)
Loading