Skip to content

Commit faba665

Browse files
authored
Create 10_google3_bug.yml (flutter#163788)
attempting to recreate this template with the right name and fixes after the revert <!-- Thanks for filing a pull request! Reviewers are typically assigned within a week of filing a request. To learn more about code review, see our documentation on Tree Hygiene: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md --> *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x]I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
1 parent cd433d4 commit faba665

File tree

1 file changed

+137
-0
lines changed

1 file changed

+137
-0
lines changed
+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
name: Report a google3 bug
2+
description: |
3+
You found a bug in Flutter causing your application to crash or
4+
throw an exception, a widget is buggy, or something looks wrong.
5+
title: "[Google3 Bug]: "
6+
labels: 'customer: google'
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thank you for using Flutter!
12+
13+
If you are looking for support, please check out our documentation
14+
or consider asking a question on Stack Overflow:
15+
16+
- https://flutter.dev/
17+
- https://api.flutter.dev/
18+
- https://stackoverflow.com/questions/tagged/flutter?sort=frequent
19+
- type: markdown
20+
attributes:
21+
value: |
22+
Before filling the form fields, please consider the following:
23+
- Ensure that you have searched the [existing issues](https://github.com/flutter/flutter/issues)
24+
- Read the [guide to filing a bug](https://flutter.dev/docs/resources/bug-reports)
25+
- type: markdown
26+
attributes:
27+
value: |
28+
Flutter GitHub issues are public and so you must avoid posting any Google confidential information in them.
29+
- type: checkboxes
30+
id: priority-indicator
31+
attributes:
32+
label: Help us understand the severity of this issue
33+
description: Please only choose one
34+
options:
35+
- label: causing severe production issues e.g. malfunctions or data loss
36+
- label: blocking next binary release
37+
- label: blocking a client feature launch within a quarter
38+
- label: nice-to-have but does not block a launch within the next quarter
39+
- type: textarea
40+
attributes:
41+
label: Steps to reproduce
42+
description: Please tell us exactly how to reproduce the problem you are running into.
43+
placeholder: |
44+
1. ...
45+
2. ...
46+
3. ...
47+
validations:
48+
required: true
49+
- type: textarea
50+
attributes:
51+
label: Expected results
52+
description: Please tell us what is expected to happen.
53+
validations:
54+
required: true
55+
- type: textarea
56+
attributes:
57+
label: Actual results
58+
description: Please tell us what is actually happening.
59+
validations:
60+
required: true
61+
- type: textarea
62+
attributes:
63+
label: Code sample
64+
description: |
65+
Please create a minimal reproducible sample that shows the problem
66+
and attach it below between the lines with the backticks.
67+
68+
To create it, use the `flutter create bug` command and update the `main.dart` file.
69+
70+
Alternatively, you can use https://dartpad.dev/ or create a public GitHub
71+
repository to share your sample.
72+
73+
Without this we will unlikely be able to progress on the issue, and because of that
74+
we regretfully will have to close it.
75+
76+
Note: Please do not upload screenshots of text. Instead, use code blocks
77+
or the above mentioned ways to upload your code sample.
78+
value: |
79+
<details open><summary>Code sample</summary>
80+
81+
```dart
82+
[Paste your code here]
83+
```
84+
85+
</details>
86+
validations:
87+
required: true
88+
- type: textarea
89+
attributes:
90+
label: Screenshots or Video
91+
description: |
92+
Upload any screenshots or video of the bug if applicable.
93+
value: |
94+
<details open>
95+
<summary>Screenshots / Video demonstration</summary>
96+
97+
[Upload media here]
98+
99+
</details>
100+
- type: textarea
101+
attributes:
102+
label: Logs
103+
description: |
104+
Include the full logs of the commands you are running between the lines
105+
with the backticks below. If you are running any `flutter` commands,
106+
please include the output of running them with `--verbose`; for example,
107+
the output of running `flutter --verbose create foo`.
108+
109+
If the logs are too large to be uploaded to GitHub, you may upload
110+
them as a `txt` file or use online tools like https://pastebin.com to
111+
share it.
112+
113+
Note: Please do not upload screenshots of text. Instead, use code blocks
114+
or the above mentioned ways to upload logs.
115+
value: |
116+
<details open><summary>Logs</summary>
117+
118+
```console
119+
[Paste your logs here]
120+
```
121+
122+
</details>
123+
- type: textarea
124+
attributes:
125+
label: Flutter Doctor output
126+
description: |
127+
Please provide the full output of running `flutter doctor -v`
128+
value: |
129+
<details open><summary>Doctor output</summary>
130+
131+
```console
132+
[Paste your output here]
133+
```
134+
135+
</details>
136+
validations:
137+
required: true

0 commit comments

Comments
 (0)