Skip to content

Commit a60aa7a

Browse files
devoncarewCommit Queue
authored andcommitted
[infra] update the list of github issue templates
Change-Id: I3df8f3f7c2f30ede926ee248fe3448372ef6ca0c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/396421 Reviewed-by: Kevin Moore <[email protected]> Commit-Queue: Devon Carew <[email protected]>
1 parent 156ff66 commit a60aa7a

File tree

6 files changed

+67
-34
lines changed

6 files changed

+67
-34
lines changed
Lines changed: 16 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
11
---
2-
name: General issue
3-
about: Report a bug or suggest a feature
4-
title: 'Create an issue'
2+
name: Report a general issue.
3+
about: Report a bug or file a feature request.
54
---
6-
Thank you for taking the time to file an issue!
75

8-
This tracker is for issues related to:
6+
Thank you for taking the time to file an issue! This tracker is for issues related to the Dart analyzer and linter, the Dart core libraries (`dart:async`, `dart:io`, etc.), the Dart native and web compilers, and the Dart VM.
97

10-
* Dart analyzer and linter
11-
* Dart core libraries (`dart:async`, `dart:io`, etc.)
12-
* Dart native and web compilers
13-
* Dart VM
8+
When reporting an issue, please include:
149

15-
Some other pieces of the Dart ecosystem are maintained elsewhere.
16-
Please file issues in their repository:
10+
- The Dart version and tooling diagnostic info (`dart info`)
11+
- Whether you are using Windows, macOS, or Linux (if applicable)
12+
- Whether you are using Chrome, Safari, Firefox, Edge (if applicable)
1713

18-
* Dart language: https://github.com/dart-lang/language
19-
* Dart website: https://github.com/dart-lang/site-www
20-
* Flutter: https://github.com/flutter/flutter
21-
* Dart and Flutter DevTools: https://github.com/flutter/devtools
22-
* `dart format`: https://github.com/dart-lang/dart_style
23-
* `dart test`: https://github.com/dart-lang/test
24-
* `dart pub`: https://github.com/dart-lang/pub
14+
Other pieces of the Dart ecosystem are maintained elsewhere; please file issues in their respective repositories:
2515

26-
If you aren't sure, file the issue here, and we'll find the right home for it.
27-
In your issue, please include:
16+
- Flutter: https://github.com/flutter/flutter
17+
- Dart language: https://github.com/dart-lang/language
18+
- Dart website: https://github.com/dart-lang/site-www
19+
- `dart format`: https://github.com/dart-lang/dart_style
20+
- `dart pub`: https://github.com/dart-lang/pub
21+
- `dart test`: https://github.com/dart-lang/test
22+
- Dart & Flutter DevTools: https://github.com/flutter/devtools
2823

29-
* Dart version and tooling diagnostic info (`dart info`)
30-
* Whether you are using Windows, macOS, or Linux (if applicable)
31-
* Whether you are using Chrome, Safari, Firefox, Edge (if applicable)
32-
33-
Missing some or all of the above might make the issue take longer or
34-
be impossible to act on.
35-
36-
If you simply have a question, please consider using the listed Dart
37-
developer communities on the following page:
38-
39-
https://dart.dev/community#join-the-conversation
24+
If you have a question, instead of using this issue tracker, please refer to the community resources at: https://dart.dev/community#join-the-conversation.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Report an issue with Dart’s static analysis.
3+
about: >-
4+
Create a bug or file a feature request related to Dart's static analysis
5+
(including the command line analyzer, analysis in IDEs, the analysis server,
6+
and the linter).
7+
labels: area-analyzer
8+
---
9+
10+
If this is a bug report, please help us by providing:
11+
12+
- a clear description of the problem you are experiencing
13+
- the expected and actual behavior, including a repro with the the specific code triggering the issue
14+
- the Dart SDK version (`dart --version`)
15+
16+
The more information you can provide, the better we can understand and address the issue. Thanks!

.github/ISSUE_TEMPLATE/3_vm.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Report an issue with the Dart VM.
3+
about: Create a bug or file a feature request related to the Dart VM.
4+
labels: area-vm
5+
---
6+
7+
If this is a bug report, please help us by providing:
8+
9+
- a clear description of the problem you are experiencing
10+
- the expected and actual behavior, including a repro with the the specific code triggering the issue
11+
- the Dart SDK version (`dart --version`)
12+
13+
The more information you can provide, the better we can understand and address the issue. Thanks!

.github/ISSUE_TEMPLATE/4_web.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Report an issue related to Dart web.
3+
about: >-
4+
Create a bug or file a feature request related to Dart web (including the web
5+
compilers, web libraries, and JS interop).
6+
labels: area-web
7+
---
8+
9+
If this is a bug report, please help us by providing:
10+
11+
- a clear description of the problem you are experiencing
12+
- the expected and actual behavior, including a repro with the the specific code triggering the issue
13+
- the Dart SDK version (`dart --version`)
14+
15+
The more information you can provide, the better we can understand and address the issue. Thanks!

.github/ISSUE_TEMPLATE/2_cherry_pick.yml renamed to .github/ISSUE_TEMPLATE/5_cherry_pick.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
name: Request a cherry-pick.
1+
name: Request a cherry-pick (used by contributors).
22
description: Request a patch to be cherry-picked into a release (for contributors use only).
33
title: '[CP] <title>'
44
labels: ['cherry-pick-review']
5+
56
assignees:
67
- mit-mit
78
- athomas
89
- vsmenon
910
- itsjustkevin
11+
1012
body:
1113
- type: textarea
1214
id: commit_hash

.github/ISSUE_TEMPLATE/3_breaking_change.yml renamed to .github/ISSUE_TEMPLATE/6_breaking_change.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
name: Propose a breaking change.
2-
description: Initiate a breaking change process (for contributors use only!).
1+
name: Propose a breaking change (used by contributors).
2+
description: Initiate a breaking change process (for contributors use only).
33
title: '[breaking change] <title>'
44
labels: ['breaking-change-request']
5+
56
assignees:
67
- itsjustkevin
78
- kevmoo
9+
810
body:
911
- type: textarea
1012
id: change_intent

0 commit comments

Comments
 (0)