Skip to content

Commit 59d823e

Browse files
committed
Moving fixes
1 parent 1d67e12 commit 59d823e

File tree

7 files changed

+27
-25
lines changed

7 files changed

+27
-25
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@
108108
- changed-files:
109109
- any-glob-to-any-file: 'pkgs/sse/**'
110110

111+
'package:test_reflective_loader':
112+
- changed-files:
113+
- any-glob-to-any-file: 'pkgs/test_reflective_loader/**'
114+
111115
'package:unified_analytics':
112116
- changed-files:
113117
- any-glob-to-any-file: 'pkgs/unified_analytics/**'

pkgs/test_reflective_loader/.github/workflows/build.yaml renamed to .github/workflows/test_reflective_loader.yaml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1-
name: Dart
1+
name: package:test_reflective_loader
22

33
on:
4-
pull_request:
4+
# Run on PRs and pushes to the default branch.
55
push:
6-
branches:
7-
- master
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/test_reflective_loader.yaml'
9+
- 'pkgs/test_reflective_loader/**'
10+
pull_request:
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/test_reflective_loader.yaml'
14+
- 'pkgs/test_reflective_loader/**'
815
schedule:
9-
# “At 00:00 (UTC) on Sunday.”
10-
- cron: '0 0 * * 0'
16+
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
1420

21+
defaults:
22+
run:
23+
working-directory: pkgs/test_reflective_loader/
24+
1525
jobs:
1626
build:
1727
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ don't naturally belong to other topic monorepos (like
4040
| [source_maps](pkgs/source_maps/) | A library to programmatically manipulate source map files. | [![package issues](https://img.shields.io/badge/package:source_maps-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_maps) | [![pub package](https://img.shields.io/pub/v/source_maps.svg)](https://pub.dev/packages/source_maps) |
4141
| [source_span](pkgs/source_span/) | Provides a standard representation for source code locations and spans. | [![package issues](https://img.shields.io/badge/package:source_span-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_span) | [![pub package](https://img.shields.io/pub/v/source_span.svg)](https://pub.dev/packages/source_span) |
4242
| [sse](pkgs/sse/) | Provides client and server functionality for setting up bi-directional communication through Server Sent Events (SSE) and corresponding POST requests. | [![package issues](https://img.shields.io/badge/package:sse-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asse) | [![pub package](https://img.shields.io/pub/v/sse.svg)](https://pub.dev/packages/sse) |
43+
| [test_reflective_loader](pkgs/test_reflective_loader/) | Support for discovering tests and test suites using reflection. | [![package issues](https://img.shields.io/badge/package:test_reflective_loader-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest_reflective_loader) | [![pub package](https://img.shields.io/pub/v/test_reflective_loader.svg)](https://pub.dev/packages/test_reflective_loader) |
4344
| [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [![package issues](https://img.shields.io/badge/package:unified_analytics-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [![pub package](https://img.shields.io/pub/v/unified_analytics.svg)](https://pub.dev/packages/unified_analytics) |
4445

4546
## Publishing automation

pkgs/test_reflective_loader/.github/dependabot.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

pkgs/test_reflective_loader/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 0.2.3-wip
1+
## 0.2.3
22

33
- Require Dart `^3.1.0`.
4+
- Move to `dart-lang/tools` monorepo.
45

56
## 0.2.2
67

pkgs/test_reflective_loader/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
[![Build Status](https://github.com/dart-lang/test_reflective_loader/workflows/Dart/badge.svg)](https://github.com/dart-lang/test_reflective_loader/actions)
1+
[![Build Status](https://github.com/dart-lang/tools/actions/workflows/test_reflective_loader.yaml/badge.svg)](https://github.com/dart-lang/tools/actions/workflows/test_reflective_loader.yaml)
22
[![pub package](https://img.shields.io/pub/v/test_reflective_loader.svg)](https://pub.dev/packages/test_reflective_loader)
3+
[![package publisher](https://img.shields.io/pub/publisher/test_reflective_loader.svg)](https://pub.dev/packages/test_reflective_loader/publisher)
34

45
Support for discovering tests and test suites using reflection.
56

@@ -24,4 +25,4 @@ executed after the returned `Future` completes.
2425

2526
Please file feature requests and bugs at the [issue tracker][tracker].
2627

27-
[tracker]: https://github.com/dart-lang/test_reflective_loader/issues
28+
[tracker]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest_reflective_loader

pkgs/test_reflective_loader/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: test_reflective_loader
2-
version: 0.2.3-wip
2+
version: 0.2.3
33
description: Support for discovering tests and test suites using reflection.
44
repository: https://github.com/dart-lang/tools/tree/main/pkgs/test_reflective_loader
55

0 commit comments

Comments
 (0)