Skip to content

Commit

Permalink
chore(gh): use collapsible blocks in bug report
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Jan 9, 2025
1 parent 2d7d173 commit 1a9132c
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/ISSUE_TEMPLATE/---bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,16 @@ body:
label: Python Sysconfig
description: |
Please attach output from `python -m sysconfig`
render: 'bash session'
Note:_ You can paste the output into the placeholder below. If it is too long, you can attach it as a file.
value: |
<details>
<summary>sysconfig.log</summary>
<!-- Please leave one blank line below for enabling the code block rendering. -->
```
Paste the output of 'python -m sysconfig', over this line.
```
</details>
validations:
required: false

Expand All @@ -91,6 +100,15 @@ body:
label: Poetry Runtime Logs
description: |
Please attach logs from the failing command using `poetry -vvv <command>`
render: 'bash session'
Note:_ You can paste the output into the placeholder below. If it is too long, you can attach it as a file.
value: |
<details>
<summary>poetry-runtime.log</summary>
<!-- Please leave one blank line below for enabling the code block rendering. -->
```
Paste the output of 'poetry -vvv <command>', over this line.
```
</details>
validations:
required: true

0 comments on commit 1a9132c

Please sign in to comment.