mirror of
https://github.com/penpot/penpot.git
synced 2025-02-09 08:38:15 -05:00
Merge branch 'schalkneethling-2395-switch-to-issue-forms' into develop
This commit is contained in:
commit
c9ba5ff31e
4 changed files with 126 additions and 93 deletions
89
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
Normal file
89
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
description: Create a report to help us improve
|
||||||
|
labels: ["bug"]
|
||||||
|
name: Bug report
|
||||||
|
title: "bug: "
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
## Before you start
|
||||||
|
|
||||||
|
Please search our [existing issues](https://github.com/penpot/penpot/issues) and open [pull requests](https://github.com/penpot/penpot/pulls) to lessen the change of filing duplicate issues or feature requests. Thank you.
|
||||||
|
|
||||||
|
---
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Steps To Reproduce
|
||||||
|
description: Steps to reproduce the behavior.
|
||||||
|
placeholder: |
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expected
|
||||||
|
attributes:
|
||||||
|
description: A clear and concise description of what you expected to happen.
|
||||||
|
label: Expected behavior
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: actual
|
||||||
|
attributes:
|
||||||
|
description: A clear and concise description of what happens instead; what the bug is.
|
||||||
|
label: Actual behavior
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: screenshots
|
||||||
|
attributes:
|
||||||
|
description: If applicable, add screenshots to help explain your problem.
|
||||||
|
label: Screenshots or video
|
||||||
|
- type: textarea
|
||||||
|
id: desktop
|
||||||
|
attributes:
|
||||||
|
label: Desktop (please complete the following information)
|
||||||
|
placeholder: |
|
||||||
|
- OS (e.g. iOS):
|
||||||
|
- Browser & version (e.g. Chrome 89.0):
|
||||||
|
- type: textarea
|
||||||
|
id: mobile
|
||||||
|
attributes:
|
||||||
|
label: Smartphone (please complete the following information)
|
||||||
|
placeholder: |
|
||||||
|
- Device & model (e.g. iPhone 6):
|
||||||
|
- OS & version (e.g. iOS 8.1):
|
||||||
|
- Browser & version (e.g. stock browser 22):
|
||||||
|
- type: textarea
|
||||||
|
id: environment
|
||||||
|
attributes:
|
||||||
|
label: Environment (please complete the following information)
|
||||||
|
placeholder: |
|
||||||
|
- Host (e.g. https://design.penpot.app, local instance):
|
||||||
|
|
||||||
|
*If self-hosted:*
|
||||||
|
- OS Version (e.g. Ubuntu 16.04):
|
||||||
|
- Docker / Docker-compose version (e.g. Docker version 18.03.0-ce, build 0520e24):
|
||||||
|
- Image version (e.g. Alpine):
|
||||||
|
|
||||||
|
Docker commands or docker-compose file (if possible and if proceed.x):
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
- type: textarea
|
||||||
|
id: frontend-trace
|
||||||
|
attributes:
|
||||||
|
label: Frontend Stack Trace
|
||||||
|
render: console
|
||||||
|
- type: textarea
|
||||||
|
id: backend-trace
|
||||||
|
attributes:
|
||||||
|
label: Backend Stack Trace
|
||||||
|
render: console
|
||||||
|
- type: textarea
|
||||||
|
id: additional-context
|
||||||
|
attributes:
|
||||||
|
label: Additional context
|
||||||
|
description: Any other context about the problem.
|
72
.github/ISSUE_TEMPLATE/bug_report.md
vendored
72
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -1,72 +0,0 @@
|
||||||
---
|
|
||||||
|
|
||||||
name: Bug report
|
|
||||||
about: Create a report to help us improve
|
|
||||||
title: ''
|
|
||||||
labels: bug
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**To Reproduce**
|
|
||||||
|
|
||||||
Steps to reproduce the behavior:
|
|
||||||
1. Go to '...'
|
|
||||||
2. Click on '....'
|
|
||||||
3. Scroll down to '....'
|
|
||||||
|
|
||||||
**Expected behavior**
|
|
||||||
|
|
||||||
A clear and concise description of what you expected to happen.
|
|
||||||
|
|
||||||
**Actual behavior**
|
|
||||||
|
|
||||||
A clear and concise description of what happens instead; what the bug is.
|
|
||||||
|
|
||||||
**Screenshots**
|
|
||||||
|
|
||||||
If applicable, add screenshots to help explain your problem.
|
|
||||||
|
|
||||||
**Desktop (please complete the following information):**
|
|
||||||
- OS (e.g. iOS):
|
|
||||||
- Browser & version (e.g. Chrome 89.0):
|
|
||||||
|
|
||||||
**Smartphone (please complete the following information):**
|
|
||||||
- Device & model (e.g. iPhone 6):
|
|
||||||
- OS & version (e.g. iOS 8.1):
|
|
||||||
- Browser & version (e.g. stock browser 22):
|
|
||||||
|
|
||||||
**Environment (please complete the following information):**
|
|
||||||
- Host (e.g. https://design.penpot.app, local instance):
|
|
||||||
|
|
||||||
*If self-hosted:*
|
|
||||||
- OS Version (e.g. Ubuntu 16.04):
|
|
||||||
- Docker / Docker-compose version (e.g. Docker version 18.03.0-ce, build 0520e24):
|
|
||||||
- Image version (e.g. Alpine):
|
|
||||||
|
|
||||||
Docker commands or docker-compose file (if possible and if proceed.x):
|
|
||||||
```
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
Frontend Stack Trace:
|
|
||||||
<details>
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
Backend Stack Trace:
|
|
||||||
<details>
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
**Additional context:**
|
|
||||||
|
|
||||||
Any other context about the problem.
|
|
37
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
Normal file
37
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
description: Suggest an idea for this project.
|
||||||
|
labels: ["needs triage", "enhancement"]
|
||||||
|
name: "Feature request"
|
||||||
|
title: "feature: "
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
## Before you start
|
||||||
|
|
||||||
|
Please search our [existing issues](https://github.com/penpot/penpot/issues) and open [pull requests](https://github.com/penpot/penpot/pulls) to lessen the change of filing duplicate issues or feature requests. Thank you.
|
||||||
|
|
||||||
|
---
|
||||||
|
- type: textarea
|
||||||
|
id: problem
|
||||||
|
attributes:
|
||||||
|
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when (...)
|
||||||
|
label: Is your feature request related to a problem? Please describe.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: solution
|
||||||
|
attributes:
|
||||||
|
description: A clear and concise description of what you want to happen.
|
||||||
|
label: Describe the solution you'd like.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: alternatives
|
||||||
|
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.
|
21
.github/ISSUE_TEMPLATE/feature_request.md
vendored
21
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
|
|
||||||
name: Feature request
|
|
||||||
about: Suggest an idea for this project
|
|
||||||
title: ''
|
|
||||||
labels: enhancement
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
|
||||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when (...)
|
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
|
||||||
A clear and concise description of what you want to happen.
|
|
||||||
|
|
||||||
**Describe alternatives you've considered**
|
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
|
||||||
|
|
||||||
**Additional context**
|
|
||||||
Add any other context or screenshots about the feature request here.
|
|
Loading…
Add table
Reference in a new issue