Skip to content

Commit ad04f17

Browse files
devoncarewkevmoo
andauthored
add a pull request labeler; add issue tracker links; update codeowners file (#2452)
- add a pull request labeler - add issue tracker links - update the codeowners file - move fake_async to using its own workflow file Some notes: - this is multiplexing package test, test_api, and test_core into one label - `package:test`; not sure if this is desired or not - this PR doesn't rev. pubspec versions for the `issue_tracker:` change; I figure that that change will just be picked up with the next general publish of the packages --- - [x] I’ve reviewed the contributor guide and applied the relevant portions to this PR. <details> <summary>Contribution guidelines:</summary><br> - See our [contributor guide](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md) for general expectations for PRs. - Larger or significant changes should be discussed in an issue before creating a PR. - Contributions to our repos should follow the [Dart style guide](https://dart.dev/guides/language/effective-dart) and use `dart format`. - Most changes should add an entry to the changelog and may need to [rev the pubspec package version](https://github.com/dart-lang/sdk/blob/main/docs/External-Package-Maintenance.md#making-a-change). - Changes to packages require [corresponding tests](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md#Testing). Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback. </details> --------- Co-authored-by: Kevin Moore <[email protected]>
1 parent 7fc9521 commit ad04f17

25 files changed

+195
-249
lines changed

.github/CODEOWNERS

-1
This file was deleted.

.github/ISSUE_TEMPLATE/01_test_runner_bug.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ about: >-
44
Report a bug in running tests, integration with a specific platform, or
55
any behavior of 'package:test'.
66
title: ''
7-
labels: bug
7+
labels: bug, package:test
88
---
99
Describe the bug in detail.
1010
Include the specific command you ran and any relevant details about the

.github/ISSUE_TEMPLATE/02_test_runner_feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ about: >-
44
Propose a feature for 'package:test' that would make testing easier or more
55
powerful.
66
title: ''
7-
labels: enhancement
7+
labels: enhancement, package:test
88
---
99
Describe the feature and include specific description of the use case, or use
1010
cases, you have in mind.

.github/ISSUE_TEMPLATE/03_checks_feedback.md

-8
This file was deleted.

.github/ISSUE_TEMPLATE/checks.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: "package:checks"
3+
about: "Create a bug or file a feature request against package:checks."
4+
labels: "package:checks"
5+
---

.github/ISSUE_TEMPLATE/fake_async.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:fake_async"
33
about: "Create a bug or file a feature request against package:fake_async."
44
labels: "package:fake_async"
5-
---
5+
---

.github/ISSUE_TEMPLATE/matcher.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:matcher"
33
about: "Create a bug or file a feature request against package:matcher."
44
labels: "package:matcher"
5-
---
5+
---

.github/ISSUE_TEMPLATE/test_descriptor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:test_descriptor"
33
about: "Create a bug or file a feature request against package:test_descriptor."
44
labels: "package:test_descriptor"
5-
---
5+
---

.github/ISSUE_TEMPLATE/test_process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:test_process"
33
about: "Create a bug or file a feature request against package:test_process."
44
labels: "package:test_process"
5-
---
5+
---

.github/labeler.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Configuration for .github/workflows/pull_request_label.yml.
2+
3+
'type-infra':
4+
- changed-files:
5+
- any-glob-to-any-file: '.github/**'
6+
7+
'package:checks':
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/checks/**'
10+
11+
'package:fake_async':
12+
- changed-files:
13+
- any-glob-to-any-file: 'pkgs/fake_async/**'
14+
15+
'package:matcher':
16+
- changed-files:
17+
- any-glob-to-any-file: 'pkgs/matcher/**'
18+
19+
'package:test':
20+
- changed-files:
21+
- any-glob-to-any-file: 'pkgs/test/**'
22+
- any-glob-to-any-file: 'pkgs/test_api/**'
23+
- any-glob-to-any-file: 'pkgs/test_core/**'
24+
25+
'package:test_descriptor':
26+
- changed-files:
27+
- any-glob-to-any-file: 'pkgs/test_descriptor/**'
28+
29+
'package:test_process':
30+
- changed-files:
31+
- any-glob-to-any-file: 'pkgs/test_process/**'

0 commit comments

Comments
 (0)