Updated issue templates (#38286)
This commit is contained in:
parent
7e5262fc60
commit
ecb37475b8
47
.github/ISSUE_TEMPLATE.md
vendored
47
.github/ISSUE_TEMPLATE.md
vendored
@ -1,47 +0,0 @@
|
|||||||
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
|
||||||
|
|
||||||
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
|
||||||
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
|
||||||
|
|
||||||
## Description
|
|
||||||
<!--Provide a brief description of the issue-->
|
|
||||||
|
|
||||||
|
|
||||||
## Steps to Reproduce
|
|
||||||
<!--Please add a series of steps to reproduce the issue-->
|
|
||||||
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
## Actual result:
|
|
||||||
<!--Please add screenshots if needed-->
|
|
||||||
|
|
||||||
|
|
||||||
## Expected result:
|
|
||||||
|
|
||||||
|
|
||||||
## Reproduces how often:
|
|
||||||
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
|
|
||||||
|
|
||||||
|
|
||||||
## Brave version (info found on brave://version)
|
|
||||||
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
|
|
||||||
|
|
||||||
|
|
||||||
## Version/Channel Information:
|
|
||||||
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
|
|
||||||
|
|
||||||
- Can you reproduce this issue with the current release?
|
|
||||||
- Can you reproduce this issue with the beta channel?
|
|
||||||
- Can you reproduce this issue with the dev channel?
|
|
||||||
- Can you reproduce this issue with the nightly channel?
|
|
||||||
|
|
||||||
## Other Additional Information:
|
|
||||||
|
|
||||||
- Does the issue resolve itself when disabling Brave Shields?
|
|
||||||
- Does the issue resolve itself when disabling Brave Rewards?
|
|
||||||
- Is the issue reproducible on the latest version of Chrome?
|
|
||||||
|
|
||||||
## Miscellaneous Information:
|
|
||||||
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
|
|
89
.github/ISSUE_TEMPLATE/01_desktop.yml
vendored
Normal file
89
.github/ISSUE_TEMPLATE/01_desktop.yml
vendored
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: Desktop issue
|
||||||
|
description: An issue affecting Linux, macOS, or Windows
|
||||||
|
labels:
|
||||||
|
- OS/Desktop
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |-
|
||||||
|
Have you searched for similar [issues](https://github.com/brave/brave-browser/issues?q=is%3Aissue+is%3Aopen+label%3AOS%2FDesktop)?
|
||||||
|
|
||||||
|
Insufficiently described issues will be closed, so please provide as much information as possible
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: A brief description of the issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: str
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: A series of steps to reproduce the issue
|
||||||
|
value: |-
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: result
|
||||||
|
attributes:
|
||||||
|
label: Actual result
|
||||||
|
description: What happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expectation
|
||||||
|
attributes:
|
||||||
|
label: Expected result
|
||||||
|
description: What should've happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: reproduces
|
||||||
|
attributes:
|
||||||
|
label: Reproduces how often
|
||||||
|
multiple: false
|
||||||
|
options:
|
||||||
|
- Easily reproduced
|
||||||
|
- Intermittent issue
|
||||||
|
- No steps to reproduce
|
||||||
|
default: 0
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Brave version (brave://version info)
|
||||||
|
description: "`Brave`, `Revision` and `OS` from `brave://version`"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: checkboxes
|
||||||
|
id: channels
|
||||||
|
attributes:
|
||||||
|
label: Channel information
|
||||||
|
description: Which browser channels does this issue occur on
|
||||||
|
options:
|
||||||
|
- label: release (stable)
|
||||||
|
- label: beta
|
||||||
|
- label: nightly
|
||||||
|
- type: checkboxes
|
||||||
|
id: reproducibility
|
||||||
|
attributes:
|
||||||
|
label: Reproducibility
|
||||||
|
description: Does this issue occur...
|
||||||
|
options:
|
||||||
|
- label: with Brave Shields disabled
|
||||||
|
- label: with Brave Rewards disabled
|
||||||
|
- label: in the latest version of Chrome
|
||||||
|
- type: textarea
|
||||||
|
id: misc
|
||||||
|
attributes:
|
||||||
|
label: Miscellaneous information
|
||||||
|
description: Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue
|
100
.github/ISSUE_TEMPLATE/02_desktop_and_android.yml
vendored
Normal file
100
.github/ISSUE_TEMPLATE/02_desktop_and_android.yml
vendored
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: Desktop and Android issue
|
||||||
|
description: An issue affecting Android and Linux, macOS, or Windows
|
||||||
|
labels:
|
||||||
|
- OS/Android
|
||||||
|
- OS/Desktop
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |-
|
||||||
|
Have you searched for similar [issues](https://github.com/brave/brave-browser/issues?q=is%3Aissue+is%3Aopen+label%3AOS%2FDesktop+label%3AOS%2FAndroid)?
|
||||||
|
|
||||||
|
Insufficiently described issues will be closed, so please provide as much information as possible
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: A brief description of the issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: str
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: A series of steps to reproduce the issue
|
||||||
|
value: |-
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: result
|
||||||
|
attributes:
|
||||||
|
label: Actual result
|
||||||
|
description: What happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expectation
|
||||||
|
attributes:
|
||||||
|
label: Expected result
|
||||||
|
description: What should've happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: reproduces
|
||||||
|
attributes:
|
||||||
|
label: Reproduces how often
|
||||||
|
multiple: false
|
||||||
|
options:
|
||||||
|
- Easily reproduced
|
||||||
|
- Intermittent issue
|
||||||
|
- No steps to reproduce
|
||||||
|
default: 0
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Desktop Brave version (brave://version info)
|
||||||
|
description: "`Brave`, `Revision` and `OS` from `brave://version`"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: device
|
||||||
|
attributes:
|
||||||
|
label: Android device
|
||||||
|
description: Device information
|
||||||
|
value: |-
|
||||||
|
- Brand/model:
|
||||||
|
- Android version:
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: checkboxes
|
||||||
|
id: channels
|
||||||
|
attributes:
|
||||||
|
label: Channel information
|
||||||
|
description: Which browser channels does this issue occur on
|
||||||
|
options:
|
||||||
|
- label: release (stable)
|
||||||
|
- label: beta
|
||||||
|
- label: nightly
|
||||||
|
- type: checkboxes
|
||||||
|
id: reproducibility
|
||||||
|
attributes:
|
||||||
|
label: Reproducibility
|
||||||
|
description: Does this issue occur...
|
||||||
|
options:
|
||||||
|
- label: with Brave Shields disabled
|
||||||
|
- label: with Brave Rewards disabled
|
||||||
|
- label: in the latest version of Chrome
|
||||||
|
- type: textarea
|
||||||
|
id: misc
|
||||||
|
attributes:
|
||||||
|
label: Miscellaneous information
|
||||||
|
description: Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue
|
98
.github/ISSUE_TEMPLATE/03_android.yml
vendored
Normal file
98
.github/ISSUE_TEMPLATE/03_android.yml
vendored
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: Android issue
|
||||||
|
description: An issue affecting Android
|
||||||
|
labels:
|
||||||
|
- OS/Android
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |-
|
||||||
|
Have you searched for similar [issues](https://github.com/brave/brave-browser/issues?q=is%3Aissue+is%3Aopen+label%3AOS%2FAndroid)?
|
||||||
|
|
||||||
|
Insufficiently described issues will be closed, so please provide as much information as possible
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: A brief description of the issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: str
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: A series of steps to reproduce the issue
|
||||||
|
value: |-
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: result
|
||||||
|
attributes:
|
||||||
|
label: Actual result
|
||||||
|
description: What happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expectation
|
||||||
|
attributes:
|
||||||
|
label: Expected result
|
||||||
|
description: What should've happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: reproduces
|
||||||
|
attributes:
|
||||||
|
label: Reproduces how often
|
||||||
|
multiple: false
|
||||||
|
options:
|
||||||
|
- Easily reproduced
|
||||||
|
- Intermittent issue
|
||||||
|
- No steps to reproduce
|
||||||
|
default: 0
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Brave version
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: device
|
||||||
|
attributes:
|
||||||
|
label: Device
|
||||||
|
description: Device information
|
||||||
|
value: |-
|
||||||
|
- Brand/model:
|
||||||
|
- Android version:
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: checkboxes
|
||||||
|
id: channels
|
||||||
|
attributes:
|
||||||
|
label: Channel information
|
||||||
|
description: Which browser channels does this issue occur on
|
||||||
|
options:
|
||||||
|
- label: release (stable)
|
||||||
|
- label: beta
|
||||||
|
- label: nightly
|
||||||
|
- type: checkboxes
|
||||||
|
id: reproducibility
|
||||||
|
attributes:
|
||||||
|
label: Reproducibility
|
||||||
|
description: Does this issue occur...
|
||||||
|
options:
|
||||||
|
- label: with Brave Shields disabled
|
||||||
|
- label: with Brave Rewards disabled
|
||||||
|
- label: in the latest version of Chrome
|
||||||
|
- type: textarea
|
||||||
|
id: misc
|
||||||
|
attributes:
|
||||||
|
label: Miscellaneous information
|
||||||
|
description: Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue
|
93
.github/ISSUE_TEMPLATE/04_ios.yml
vendored
Normal file
93
.github/ISSUE_TEMPLATE/04_ios.yml
vendored
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: iOS issue
|
||||||
|
description: An issue affecting iOS
|
||||||
|
labels:
|
||||||
|
- OS/iOS
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |-
|
||||||
|
Have you searched for similar [issues](https://github.com/brave/brave-browser/issues?q=is%3Aissue+is%3Aopen+label%3AOS%2FiOS)?
|
||||||
|
|
||||||
|
Insufficiently described issues will be closed, so please provide as much information as possible
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: A brief description of the issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: str
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: A series of steps to reproduce the issue
|
||||||
|
value: |-
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: result
|
||||||
|
attributes:
|
||||||
|
label: Actual result
|
||||||
|
description: What happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expectation
|
||||||
|
attributes:
|
||||||
|
label: Expected result
|
||||||
|
description: What should've happened
|
||||||
|
placeholder: include screenshots if needed
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: reproduces
|
||||||
|
attributes:
|
||||||
|
label: Reproduces how often
|
||||||
|
multiple: false
|
||||||
|
options:
|
||||||
|
- Easily reproduced
|
||||||
|
- Intermittent issue
|
||||||
|
- No steps to reproduce
|
||||||
|
default: 0
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Brave version
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: device
|
||||||
|
attributes:
|
||||||
|
label: Device/iOS version
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: checkboxes
|
||||||
|
id: affected
|
||||||
|
attributes:
|
||||||
|
label: Affected browser versions
|
||||||
|
description: Which browser versions does this issue occur on
|
||||||
|
options:
|
||||||
|
- label: latest AppStore
|
||||||
|
- label: latest TestFlight
|
||||||
|
- label: previous TestFlight
|
||||||
|
- type: checkboxes
|
||||||
|
id: reproducibility
|
||||||
|
attributes:
|
||||||
|
label: Reproducibility
|
||||||
|
description: Does this issue occur...
|
||||||
|
options:
|
||||||
|
- label: with Brave Shields disabled
|
||||||
|
- label: in the latest version of mobile Safari
|
||||||
|
- type: textarea
|
||||||
|
id: misc
|
||||||
|
attributes:
|
||||||
|
label: Miscellaneous information
|
||||||
|
description: Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue
|
39
.github/ISSUE_TEMPLATE/05_chromium_bump.yml
vendored
Normal file
39
.github/ISSUE_TEMPLATE/05_chromium_bump.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: Chromium minor bump
|
||||||
|
description: An issue for a minor Chromium bump
|
||||||
|
labels:
|
||||||
|
- Chromium/upgrade minor
|
||||||
|
- OS/Android
|
||||||
|
- OS/Desktop
|
||||||
|
- QA/Test-Plan-Specified
|
||||||
|
- QA/Yes
|
||||||
|
- release-notes/include
|
||||||
|
title: "Upgrade from Chromium **PREVIOUS_VERSION** to Chromium **NEW_VERSION**"
|
||||||
|
assignees:
|
||||||
|
- emerick
|
||||||
|
- mkarolin
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: bump
|
||||||
|
attributes:
|
||||||
|
label: Minor Chromium bump
|
||||||
|
value: |-
|
||||||
|
https://chromium.googlesource.com/chromium/src/+log/PREVIOUS_VERSION..NEW_VERSION?pretty=fuller&n=10000
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: qa
|
||||||
|
attributes:
|
||||||
|
label: QA tests
|
||||||
|
value: |-
|
||||||
|
- Check branding items
|
||||||
|
- Check for version bump
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: checks
|
||||||
|
attributes:
|
||||||
|
label: Minor Chromium bump
|
||||||
|
value: |-
|
||||||
|
- No specific code changes in Brave (only line number changes in patches)
|
21
.github/ISSUE_TEMPLATE/06_code_health.yml
vendored
Normal file
21
.github/ISSUE_TEMPLATE/06_code_health.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
|
||||||
|
|
||||||
|
name: Code health
|
||||||
|
description: Follow ups for open pull requests, refactoring, dependency updates
|
||||||
|
labels:
|
||||||
|
- dev-concern
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |-
|
||||||
|
Have you searched for similar [issues](https://github.com/brave/brave-browser/issues?q=is%3Aissue+is%3Aopen+label%3Adev-concern)?
|
||||||
|
|
||||||
|
Insufficiently described issues will be closed, so please provide as much information as possible
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: A brief description of the issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
60
.github/ISSUE_TEMPLATE/all.md
vendored
60
.github/ISSUE_TEMPLATE/all.md
vendored
@ -1,60 +0,0 @@
|
|||||||
---
|
|
||||||
name: Desktop and Android Issue
|
|
||||||
about: 'Template for logging issues that affect both Desktop and Android'
|
|
||||||
title: ""
|
|
||||||
labels: OS/Desktop, OS/Android
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
|
||||||
|
|
||||||
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
|
||||||
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
|
||||||
|
|
||||||
## Description
|
|
||||||
<!--Provide a brief description of the issue-->
|
|
||||||
|
|
||||||
|
|
||||||
## Steps to Reproduce
|
|
||||||
<!--Please add a series of steps to reproduce the issue-->
|
|
||||||
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
## Actual result:
|
|
||||||
<!--Please add screenshots if needed-->
|
|
||||||
|
|
||||||
|
|
||||||
## Expected result:
|
|
||||||
|
|
||||||
|
|
||||||
## Reproduces how often:
|
|
||||||
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
|
|
||||||
|
|
||||||
|
|
||||||
## Desktop Brave version:
|
|
||||||
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
|
|
||||||
|
|
||||||
|
|
||||||
## Android Device details:
|
|
||||||
- Install type (ARM, x86):
|
|
||||||
- Device type (Phone, Tablet, Phablet):
|
|
||||||
- Android version:
|
|
||||||
|
|
||||||
## Version/Channel Information:
|
|
||||||
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
|
|
||||||
|
|
||||||
- Can you reproduce this issue with the current release?
|
|
||||||
- Can you reproduce this issue with the beta channel?
|
|
||||||
- Can you reproduce this issue with the nightly channel?
|
|
||||||
|
|
||||||
## Other Additional Information:
|
|
||||||
|
|
||||||
- Does the issue resolve itself when disabling Brave Shields?
|
|
||||||
- Does the issue resolve itself when disabling Brave Rewards?
|
|
||||||
- Is the issue reproducible on the latest version of Chrome?
|
|
||||||
|
|
||||||
## Miscellaneous Information:
|
|
||||||
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
|
|
54
.github/ISSUE_TEMPLATE/android.md
vendored
54
.github/ISSUE_TEMPLATE/android.md
vendored
@ -1,54 +0,0 @@
|
|||||||
---
|
|
||||||
name: Android Issue
|
|
||||||
about: Template for logging issues on Android
|
|
||||||
title: ""
|
|
||||||
labels: OS/Android
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
|
||||||
|
|
||||||
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
|
||||||
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
|
||||||
|
|
||||||
## Description <!-- Provide a brief description of the issue -->
|
|
||||||
|
|
||||||
|
|
||||||
## Steps to reproduce <!-- Please add a series of steps to reproduce the issue -->
|
|
||||||
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
## Actual result <!-- Please add screenshots if needed -->
|
|
||||||
|
|
||||||
|
|
||||||
## Expected result
|
|
||||||
|
|
||||||
|
|
||||||
## Issue reproduces how often <!-- [Easily reproduced/Intermittent issue/No steps to reproduce] -->
|
|
||||||
|
|
||||||
|
|
||||||
## Version/Channel Information:
|
|
||||||
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
|
|
||||||
|
|
||||||
- Can you reproduce this issue with the current Play Store version?
|
|
||||||
- Can you reproduce this issue with the current Play Store Beta version?
|
|
||||||
- Can you reproduce this issue with the current Play Store Nightly version?
|
|
||||||
|
|
||||||
## Device details
|
|
||||||
- Install type (ARM, x86):
|
|
||||||
- Device type (Phone, Tablet, Phablet):
|
|
||||||
- Android version:
|
|
||||||
|
|
||||||
## Brave version
|
|
||||||
|
|
||||||
|
|
||||||
### Website problems only
|
|
||||||
- Does the issue resolve itself when disabling Brave Shields?
|
|
||||||
- Does the issue resolve itself when disabling Brave Rewards?
|
|
||||||
- Is the issue reproducible on the latest version of Chrome?
|
|
||||||
|
|
||||||
### Additional information
|
|
||||||
<!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue -->
|
|
20
.github/ISSUE_TEMPLATE/chromium_minor_bump.md
vendored
20
.github/ISSUE_TEMPLATE/chromium_minor_bump.md
vendored
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
name: Chromium Minor Bump Issue
|
|
||||||
about: 'Template for creating a Chromium Minor Bump issues'
|
|
||||||
title: "Upgrade from Chromium **PREVIOUS_VERSION** to Chromium **NEW_VERSION**."
|
|
||||||
labels: OS/Desktop, OS/Android, Chromium/upgrade minor, QA/Yes, QA/Test-Plan-Specified, release-notes/include
|
|
||||||
assignees: emerick, mkarolin
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
# Minor Chromium bump
|
|
||||||
|
|
||||||
https://chromium.googlesource.com/chromium/src/+log/PREVIOUS_VERSION..NEW_VERSION?pretty=fuller&n=10000
|
|
||||||
|
|
||||||
# QA tests:
|
|
||||||
|
|
||||||
* Check branding items
|
|
||||||
* Check for version bump
|
|
||||||
|
|
||||||
# Additional checks:
|
|
||||||
* No specific code changes in Brave (only line number changes in patches)
|
|
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: FAQ
|
||||||
|
url: https://brave.com/faq/
|
||||||
|
about: Frequently Asked Questions
|
||||||
|
- name: Help Center
|
||||||
|
url: https://support.brave.com/
|
||||||
|
about: Help Center
|
||||||
|
- name: Community
|
||||||
|
url: https://community.brave.com/
|
||||||
|
about: Community support, this is the place to ask questions
|
55
.github/ISSUE_TEMPLATE/desktop.md
vendored
55
.github/ISSUE_TEMPLATE/desktop.md
vendored
@ -1,55 +0,0 @@
|
|||||||
---
|
|
||||||
name: Desktop Issue
|
|
||||||
about: 'Template for logging issues on Desktop '
|
|
||||||
title: ""
|
|
||||||
labels: OS/Desktop
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
|
||||||
|
|
||||||
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
|
||||||
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
|
||||||
|
|
||||||
## Description
|
|
||||||
<!--Provide a brief description of the issue-->
|
|
||||||
|
|
||||||
|
|
||||||
## Steps to Reproduce
|
|
||||||
<!--Please add a series of steps to reproduce the issue-->
|
|
||||||
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
## Actual result:
|
|
||||||
<!--Please add screenshots if needed-->
|
|
||||||
|
|
||||||
|
|
||||||
## Expected result:
|
|
||||||
|
|
||||||
|
|
||||||
## Reproduces how often:
|
|
||||||
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
|
|
||||||
|
|
||||||
|
|
||||||
## Brave version (brave://version info)
|
|
||||||
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
|
|
||||||
|
|
||||||
|
|
||||||
## Version/Channel Information:
|
|
||||||
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
|
|
||||||
|
|
||||||
- Can you reproduce this issue with the current release?
|
|
||||||
- Can you reproduce this issue with the beta channel?
|
|
||||||
- Can you reproduce this issue with the nightly channel?
|
|
||||||
|
|
||||||
## Other Additional Information:
|
|
||||||
|
|
||||||
- Does the issue resolve itself when disabling Brave Shields?
|
|
||||||
- Does the issue resolve itself when disabling Brave Rewards?
|
|
||||||
- Is the issue reproducible on the latest version of Chrome?
|
|
||||||
|
|
||||||
## Miscellaneous Information:
|
|
||||||
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
|
|
46
.github/ISSUE_TEMPLATE/ios.md
vendored
46
.github/ISSUE_TEMPLATE/ios.md
vendored
@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
name: iOS Issue
|
|
||||||
about: Template for logging issues on iOS
|
|
||||||
title: ""
|
|
||||||
labels: OS/iOS
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
|
||||||
|
|
||||||
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
|
||||||
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
|
||||||
|
|
||||||
## Description:
|
|
||||||
|
|
||||||
|
|
||||||
## Steps to Reproduce
|
|
||||||
1.
|
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
## Actual result: <!-- Add screenshots if needed -->
|
|
||||||
|
|
||||||
|
|
||||||
## Expected result:
|
|
||||||
|
|
||||||
|
|
||||||
## Reproduces how often: [Easily reproduced, Intermittent Issue]
|
|
||||||
|
|
||||||
|
|
||||||
## Brave Version: <!-- Provide full details Eg: 1.62.0 (102) -->
|
|
||||||
|
|
||||||
- Can you reproduce this issue with the most recent build from TestFlight?
|
|
||||||
- Can you reproduce this issue with the previous version of the current build from TestFlight?
|
|
||||||
- Can you reproduce this issue with the current build from AppStore?
|
|
||||||
|
|
||||||
### Device details: <!-- Model type and iOS version Eg: iPhone 6s+ (iOS 10.3.3)-->
|
|
||||||
|
|
||||||
|
|
||||||
### Website problems only:
|
|
||||||
- Does the issue resolve itself when disabling Brave Shields?
|
|
||||||
- Is the issue reproducible on the latest version of Mobile Safari?
|
|
||||||
|
|
||||||
### Additional Information
|
|
||||||
<!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue -->
|
|
6
.github/issue_template.md
vendored
Normal file
6
.github/issue_template.md
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
|
||||||
|
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
|
||||||
|
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
|
||||||
|
|
||||||
|
## Description
|
||||||
|
<!--Provide a brief description of the issue-->
|
Loading…
x
Reference in New Issue
Block a user