update issue form and template
This commit is contained in:
parent
89678f79a7
commit
d99d818bf8
|
@ -1,47 +1,55 @@
|
||||||
name: Bug report
|
name: 🐞 Bug Report
|
||||||
description: Report a bug in CircuitPython
|
description: Create a bug report to help us improve
|
||||||
labels:
|
labels:
|
||||||
- bug
|
- bug
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: >-
|
value: >-
|
||||||
## Bug Report
|
Thanks! for testing out CircuitPython. Now that you have encountered a
|
||||||
Thanks! for testing out CircuitPython. Now that you have got a
|
bug... you can file a report for it.
|
||||||
problem... you can file a bug report for it.
|
- type: textarea
|
||||||
- type: input
|
|
||||||
id: firmware
|
id: firmware
|
||||||
attributes:
|
attributes:
|
||||||
label: CircuitPython version
|
label: CircuitPython version
|
||||||
description: >-
|
description: >-
|
||||||
Include the version of CircuitPython you're running. You can see it in
|
Include the version of CircuitPython you're running. You can see it in
|
||||||
the `boot_out.txt` file, as well as in the REPL.
|
the `boot_out.txt` file, as well as in the `REPL`.
|
||||||
placeholder: >-
|
placeholder: Adafruit CircuitPython 6.2.0 on 2021-03-01; Raspberry Pi Pico with rp2040
|
||||||
Adafruit CircuitPython 6.2.0-beta.2 on 2021-03-01; Raspberry Pi Pico
|
render: python
|
||||||
with rp2040
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: code
|
id: code
|
||||||
attributes:
|
attributes:
|
||||||
label: Code/REPL
|
label: Code/REPL
|
||||||
placeholder: >-
|
description: This is automatically rendered as Python, so no need for backticks.
|
||||||
|
placeholder: |
|
||||||
import busio, bitbangio
|
import busio, bitbangio
|
||||||
i2c = bitbangio.I2C(board.GP1, board.GP0)
|
i2c = bitbangio.I2C(board.GP1, board.GP0)
|
||||||
render: python
|
render: python
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: behavior
|
id: behavior
|
||||||
attributes:
|
attributes:
|
||||||
label: Behavior
|
label: Behavior
|
||||||
description: What happens when you run the code above? Include any error messages.
|
description: What happens when you run the code above? Include error messages (if any).
|
||||||
placeholder: >-
|
placeholder: |
|
||||||
|
```python
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File "<stdin>", line 1, in <module>
|
File "<stdin>", line 1, in <module>
|
||||||
TimeoutError: Clock stretch too long
|
TimeoutError: Clock stretch too long
|
||||||
|
```
|
||||||
|
On-board led pulses red.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: description
|
id: description
|
||||||
attributes:
|
attributes:
|
||||||
label: Description
|
label: Description
|
||||||
description: Optionally, describe the bug in more detail.
|
description: Optionally, describe the bug in more detail.
|
||||||
placeholder: >-
|
placeholder: |
|
||||||
- Error while using i2c...
|
- Error while using i2c...
|
||||||
- Only happens when...
|
- Only happens when...
|
||||||
- might be related to #4291...
|
- might be related to #4291...
|
||||||
|
@ -52,3 +60,4 @@ body:
|
||||||
description: >-
|
description: >-
|
||||||
Optionally, add any other information like hardware connection, scope
|
Optionally, add any other information like hardware connection, scope
|
||||||
output etc. If you have already done some debugging, mention it here.
|
output etc. If you have already done some debugging, mention it here.
|
||||||
|
placeholder: Removing [this](url) line resolves the issue.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: Adafruit Forum
|
- name: 🔗 Adafruit Forum
|
||||||
url: https://forums.adafruit.com/
|
url: https://forums.adafruit.com/
|
||||||
about: Official Adafruit technical support forum. Good for getting help on getting a project working.
|
about: Official Adafruit technical support forum. Good for getting help on getting a project working.
|
||||||
- name: Adafruit Discord
|
- name: 🔗 Adafruit Discord
|
||||||
url: https://adafru.it/discord
|
url: https://adafru.it/discord
|
||||||
about: Unofficial chat with many helpful folks and normally prompt replies.
|
about: Unofficial chat with many helpful folks and normally prompt replies.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
name: Feature request
|
name: 🚀 Feature Request
|
||||||
about: Suggest an idea for this project
|
about: Suggest an idea for this project
|
||||||
title: ''
|
title: ''
|
||||||
labels: 'enhancement'
|
labels: 'enhancement'
|
||||||
|
@ -7,5 +7,5 @@ assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- We are always adding new features and enhancements to CircuitPython 🚀
|
<!-- We keep adding new features and enhancements to CircuitPython 🚀
|
||||||
and would love ❤ to see what new challenge you have got for us... 🙂 -->
|
and would love ❤ to see what new challenge you have got for us... 🙂 -->
|
||||||
|
|
Loading…
Reference in New Issue