-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a pull request labeler; add issue tracker links; update codeowner…
…s 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]>
- Loading branch information
1 parent
7fc9521
commit ad04f17
Showing
25 changed files
with
195 additions
and
249 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
name: "package:checks" | ||
about: "Create a bug or file a feature request against package:checks." | ||
labels: "package:checks" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Configuration for .github/workflows/pull_request_label.yml. | ||
|
||
'type-infra': | ||
- changed-files: | ||
- any-glob-to-any-file: '.github/**' | ||
|
||
'package:checks': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/checks/**' | ||
|
||
'package:fake_async': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/fake_async/**' | ||
|
||
'package:matcher': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/matcher/**' | ||
|
||
'package:test': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/test/**' | ||
- any-glob-to-any-file: 'pkgs/test_api/**' | ||
- any-glob-to-any-file: 'pkgs/test_core/**' | ||
|
||
'package:test_descriptor': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/test_descriptor/**' | ||
|
||
'package:test_process': | ||
- changed-files: | ||
- any-glob-to-any-file: 'pkgs/test_process/**' |
Oops, something went wrong.