Skip to content

Commit

Permalink
add: GitHub templates
Browse files Browse the repository at this point in the history
This commit adds issue and PR templates for FastLink project.
  • Loading branch information
ThePedroo committed Nov 17, 2023
1 parent cbeba1c commit 6154d97
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Feature request
description: Ask for a new feature to be added
title: "[FR]: "
labels: ["enhancement", "not confirmed"]

body:
- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of what the feature is.
validations:
required: true

- type: textarea
id: reason
attributes:
label: Reason
description: Why should this feature be added?
validations:
required: true

- type: textarea
id: example
attributes:
label: Example code
description: If you have an example of how this feature should be implemented, please share it here.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Confirmations
description: The following confirmations are required to open a feature request.
options:
- label: This feature is not already implemented.
required: true
- label: I have verified that this is not a duplicate feature request.
required: true
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/issue_template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Issue report
description: Report an issue
title: "[BUG]: "
labels: ["bug", "not confirmed"]

body:
- type: input
id: version
attributes:
label: FastLink version
description: The version of FastLink you're using.
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of what the bug is.
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to reproduce
description: Steps to reproduce the behavior.
validations:
required: true

- type: textarea
id: example
attributes:
label: Example code
description: If you have an example of how to reproduce the bug, please share it here.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Confirmations
description: The following confirmations are required to open a bug report.
options:
- label: My environment meets the minimum requirements.
required: true
- label: I have verified that this is not a duplicate issue.
required: true
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## Changes

Write here about the changes you've made

## Why

Write here why you think this should be merged

## Checkmarks

- [ ] The modified functions have been tested.
- [ ] Used the same indentation as the rest of the project.

## Additional information

If you have any additional information, write it here

0 comments on commit 6154d97

Please sign in to comment.