mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Update the GitHub Issue and PR templates to a new format and add a CLA workflow
This commit is contained in:
parent
bd52350c00
commit
bbbb967c63
7 changed files with 172 additions and 23 deletions
95
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
95
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
name: Bug Report
|
||||
description: File a bug report
|
||||
title: "[Bug]: "
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thank you for reporting an issue with JUCE.
|
||||
- type: textarea
|
||||
id: repro
|
||||
attributes:
|
||||
label: Detailed steps on how to reproduce the bug
|
||||
description: If possible please use already existing JUCE code such as the examples or the demo plug-in
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: What is the expected behaviour?
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
label: Operating system
|
||||
description: What operating system do you see the bug on?
|
||||
multiple: true
|
||||
options:
|
||||
- Windows
|
||||
- macOS
|
||||
- Linux
|
||||
- iOS
|
||||
- Android
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: osversion
|
||||
attributes:
|
||||
label: What version of the operating system?
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: architecture
|
||||
attributes:
|
||||
label: Architecture
|
||||
description: What type of machine do you see the bug on?
|
||||
multiple: true
|
||||
options:
|
||||
- x86_64
|
||||
- ARM
|
||||
- Other
|
||||
- 64-bit
|
||||
- 32-bit
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: stacktrace
|
||||
attributes:
|
||||
label: Stacktrace
|
||||
description: Please copy and paste any relevant stack trace. This will be automatically formatted into code, so no need for backticks.
|
||||
render: shell
|
||||
- type: dropdown
|
||||
id: pluginformat
|
||||
attributes:
|
||||
label: Plug-in format (if applicable)
|
||||
multiple: true
|
||||
options:
|
||||
- VST2
|
||||
- VST3
|
||||
- AU
|
||||
- AUv3
|
||||
- AAX
|
||||
- LV2
|
||||
- Standalone
|
||||
- type: textarea
|
||||
id: pluginhost
|
||||
attributes:
|
||||
label: Plug-in host application (DAW) (if applicable)
|
||||
- type: checkboxes
|
||||
id: developbranch
|
||||
attributes:
|
||||
label: Tested against the `develop` branch
|
||||
description: We have often already fixed bugs on our `develop` branch. Please confirm if you have tested with the latest commit.
|
||||
options:
|
||||
- label: I can reproduce the bug on the `develop` branch
|
||||
- type: checkboxes
|
||||
id: terms
|
||||
attributes:
|
||||
label: Code of Conduct
|
||||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://berlincodeofconduct.org/)
|
||||
options:
|
||||
- label: I agree to follow the Code of Conduct
|
||||
required: true
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue