Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #271 from asigloo/feature/270-add-githubs-issue-forms
Browse files Browse the repository at this point in the history
feat: added issue templates with forms
  • Loading branch information
alvarosabu authored Aug 24, 2021
2 parents 79427e6 + cbec8c5 commit 23e89ea
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 58 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

71 changes: 71 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: "\U0001F41E Bug report"
description: Create a report to help me improve the library
title: Am I a bug or a feature?
labels: [triage, bug]
assignees:
- alvarosaburido
body:
- type: markdown
attributes:
value: |
"Thanks for taking the time to fill out this bug report!
Please consider that I'm maintaining this library on my free time, thanks!"
- type: dropdown
id: version
attributes:
label: Version
description: What version of the library are you using?
options:
- 3.x.x (Vue 3.x)
- 2 (Vue 2.x - legacy)
- type: textarea
id: bug-description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
placeholder: Bug description
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Describe the bug
description: Steps to reproduce the behavior:,
placeholder: "1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error"
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
placeholder: Expected behavior
validations:
required: true
- type: textarea
id: system-info
attributes:
label: System Info
description: Output of `npx envinfo --system --npmPackages @asigloo/vue-dynamic-forms --binaries --browsers`
render: shell
placeholder: System, Binaries, Browsers
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Read the [docs](https://vue-dynamic-forms-docs.netlify.app/).
required: true
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "\U0001F680 New feature proposal"
description: Suggest an idea for this project
title: 'My awesome PR request '
labels: [triage, feature-request]
assignees:
- alvarosaburido
body:
- type: markdown
attributes:
value: |
Thanks for your interest in the project and taking the time to fill out this feature report!
- type: textarea
id: feature-description
attributes:
label: Is your feature request related to a problem? Please describe.
description: "A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]"
validations:
required: true
- type: textarea
id: suggested-solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternative
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
required: true

0 comments on commit 23e89ea

Please sign in to comment.