8000 ISSUE_TEMPLATES/bug_report.yml: ask for board name by dhalbert · Pull Request #10008 · adafruit/circuitpython · GitHub
[go: up one dir, main page]

Skip to content

ISSUE_TEMPLATES/bug_report.yml: ask for board name #10008

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: 🐞 Bug Report
description: Create a bug report to help us improve
description: Create a bug report to help us improve CircuitPython
labels:
- bug
body:
- type: markdown
attributes:
value: >-
Thanks for testing out CircuitPython! Now that you have encountered a
bug... you can file a report for it.
bug, you can file a report for it.
- type: textarea
id: firmware
attributes:
label: CircuitPython version
label: CircuitPython version and board name
description: >-
Include the version of CircuitPython you're running. You can see it in
the `boot_out.txt` file, as well as in the `REPL`.
Include the version of CircuitPython you're running and the name of the board you're using.
You can find this information in the `boot_out.txt` file, as well as in the REPL.
placeholder: Adafruit CircuitPython 6.2.0 on 2021-03-01; Raspberry Pi Pico with rp2040
render: python
validations:
Expand All @@ -23,7 +23,7 @@ body:
id: code
attributes:
label: Code/REPL
description: This is automatically rendered as Python, so no need for backticks.
description: Code here is automatically rendered as Python, so you don't need to include backticks.
placeholder: |
import busio, bitbangio
i2c = bitbangio.I2C(board.GP1, board.GP0)
Expand Down
0