Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a pull request labeler; add issue tracker links; update codeowners file #2452

Merged
merged 2 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01_test_runner_bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: >-
Report a bug in running tests, integration with a specific platform, or
any behavior of 'package:test'.
title: ''
labels: bug
labels: bug, package:test
---
Describe the bug in detail.
Include the specific command you ran and any relevant details about the
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/02_test_runner_feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: >-
Propose a feature for 'package:test' that would make testing easier or more
powerful.
title: ''
labels: enhancement
labels: enhancement, package:test
---
Describe the feature and include specific description of the use case, or use
cases, you have in mind.
8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/03_checks_feedback.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/checks.md
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"
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/fake_async.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:fake_async"
about: "Create a bug or file a feature request against package:fake_async."
labels: "package:fake_async"
---
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/matcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:matcher"
about: "Create a bug or file a feature request against package:matcher."
labels: "package:matcher"
---
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/test_descriptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:test_descriptor"
about: "Create a bug or file a feature request against package:test_descriptor."
labels: "package:test_descriptor"
---
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/test_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:test_process"
about: "Create a bug or file a feature request against package:test_process."
labels: "package:test_process"
---
---
31 changes: 31 additions & 0 deletions .github/labeler.yml
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/**'
Loading
Loading