Skip to content

Commit

Permalink
Copy the issue/PR templates from Fyne
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Oct 4, 2021
1 parent 9c50b80 commit 7e979d2
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'unverified'
assignees: ''

---

<!-- Please search for open issues that relate to the same problem before opening a new one. -->

### Describe the bug:
<!-- A clear and concise description about the bug. -->


### To Reproduce:
Steps to reproduce the behaviour:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

### Screenshots:
<!-- If applicable, add screenshots or gifs to help explain your problem. -->


### Example code:
<!-- If applicable, add a short code snippet to help explain and simplify reproduction of the problem. -->
<!-- Please write the code inside a code block with go syntax, like this:
```go
Write your code here.
```
-->


### Device (please complete the following information):
- **OS:** <!-- [e.g. Linux, MacOS or iOS] -->
- **Version:** <!-- [e.g. 5.10.2, 10.13 High Sierra or 14.2] -->
- **Go version:** <!-- [e.g. 1.12.3] -->
- **FyneDesk version:** <!-- [e.g. 0.2.0 or git SHA] -->
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
contact_links:
- name: Ask a question
url: https://fyne.io/support/
about: For a toolkit question or help with your code go to our support page
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

<!-- Please search for open issues that relate to the same feature before opening a new one. -->

### 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 [...] -->

### Is it possible to construct a solution with the existing API?
<!-- If this is an enhancement have you been able to create something similar,
or is your desired outcome not possible at this time? -->

### Describe the solution you'd like to see:
<!-- A clear and concise description of what you want to happen. -->
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- If this is your first pull request for Fyne please read the contributor docs at:
https://github.com/fyne-io/fyne/wiki/Contributing.
Be sure that your work is based off `develop` branch. -->

### Description:
<!-- A summary of the change included and which issue it addresses.
Please include any relevant motivation and background. -->

Fixes #(issue)

### Checklist:
<!-- Please tick these as appropriate using [x] -->

- [ ] Tests included.
- [ ] Lint and formatter run with no errors.
- [ ] Tests all pass.

#### Where applicable:
<!-- Please delete these if not required for this PR -->

- [ ] Public APIs match existing style.
- [ ] Any breaking changes have a deprecation path or have been discussed.
- [ ] Updated the vendor folder (using `go mod vendor`).

0 comments on commit 7e979d2

Please sign in to comment.