Skip to content
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

New fields Installation, Customer or Website name and Priority to Bug template #22213

Open
wants to merge 6 commits into
base: 5.x-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,35 @@ body:
placeholder: Steps to reproduce, e.g. "Go to [Matomo-URL] > Click on Visitors > Click Overview"
validations:
required: true
- type: input
id: customer-website-name
attributes:
label: Customer and Website Name
description: Customer Name and Website Name
validations:
required: false
- type: dropdown
id: installation
attributes:
label: On Premise or Cloud
multiple: false
options:
- On Premise
- Cloud
achakko marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: dropdown
id: priority
attributes:
label: Priority
multiple: false
options:
- 1 - Critical
- 2 - High
- 3 - Medium
- 4 - Low
validations:
required: false
sgiehl marked this conversation as resolved.
Show resolved Hide resolved
- type: input
id: version
attributes:
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/screenshot-testing/run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ async function main() {
// headless.
mocha.addFile(path.join(__dirname, 'mocha-super-suite.js'));

app.runTests(mocha)
app.runTests(mocha)
michalkleiner marked this conversation as resolved.
Show resolved Hide resolved
}
Loading