Skip to content

Commit 5db5ae6

Browse files
committed
update glob infra and readme post merge
1 parent cb1686c commit 5db5ae6

File tree

10 files changed

+52
-107
lines changed

10 files changed

+52
-107
lines changed

.github/ISSUE_TEMPLATE/unified_analytics_event.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "package:unified_analytics - request a new event"
22
description: "Create a request for collecting a new event or new event data."
3-
labels: "package:unified_analytics"
3+
labels:
4+
- "package:unified_analytics"
45
body:
56
- type: markdown
67
attributes:

.github/ISSUE_TEMPLATE/unified_analytics_user_property.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "package:unified_analytics - request a new user property"
22
description: "Create a request for collecting a new user property."
3-
labels: "package:unified_analytics"
3+
labels:
4+
- "package:unified_analytics"
45
body:
56
- type: markdown
67
attributes:

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
- changed-files:
5757
- any-glob-to-any-file: 'pkgs/file_testing/**'
5858

59+
'package:glob':
60+
- changed-files:
61+
- any-glob-to-any-file: 'pkgs/glob/**'
62+
5963
'package:graphs':
6064
- changed-files:
6165
- any-glob-to-any-file: 'pkgs/graphs/**'

.github/workflows/glob.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: package:glob
2+
3+
permissions: read-all
4+
5+
on:
6+
# Run CI on all PRs (against any branch) and on pushes to the main branch.
7+
pull_request:
8+
paths:
9+
- '.github/workflows/glob.yaml'
10+
- 'pkgs/grglobaphs/**'
11+
push:
12+
branches: [ main ]
13+
paths:
14+
- '.github/workflows/glob.yaml'
15+
- 'pkgs/glob/**'
16+
schedule:
17+
- cron: '0 0 * * 0' # weekly
18+
19+
defaults:
20+
run:
21+
working-directory: pkgs/glob
22+
23+
jobs:
24+
build:
25+
runs-on: ubuntu-latest
26+
strategy:
27+
fail-fast: false
28+
matrix:
29+
sdk: [stable, dev]
30+
steps:
31+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
32+
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
33+
with:
34+
sdk: ${{ matrix.sdk }}
35+
- run: dart pub get
36+
- run: dart analyze --fatal-infos
37+
- run: dart format --output=none --set-exit-if-changed .
38+
if: ${{ matrix.sdk == 'stable' }}
39+
- run: dart test

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ don't naturally belong to other topic monorepos (like
2727
| [extension_discovery](pkgs/extension_discovery/) | A convention and utilities for package extension discovery. | [![issues](https://img.shields.io/badge/issues-4774bc)][extension_discovery_issues] | [![pub package](https://img.shields.io/pub/v/extension_discovery.svg)](https://pub.dev/packages/extension_discovery) |
2828
| [file](pkgs/file/) | A pluggable, mockable file system abstraction for Dart. | [![issues](https://img.shields.io/badge/issues-4774bc)][file_issues] | [![pub package](https://img.shields.io/pub/v/file.svg)](https://pub.dev/packages/file) |
2929
| [file_testing](pkgs/file_testing/) | Testing utilities for package:file. | [![issues](https://img.shields.io/badge/issues-4774bc)][file_testing_issues] | [![pub package](https://img.shields.io/pub/v/file_testing.svg)](https://pub.dev/packages/file_testing) |
30+
| [glob](pkgs/glob/) | A library to perform Bash-style file and directory globbing. | [![issues](https://img.shields.io/badge/issues-4774bc)][glob_issues] | [![pub package](https://img.shields.io/pub/v/glob.svg)](https://pub.dev/packages/glob) |
3031
| [graphs](pkgs/graphs/) | Graph algorithms that operate on graphs in any representation. | [![issues](https://img.shields.io/badge/issues-4774bc)][graphs_issues] | [![pub package](https://img.shields.io/pub/v/graphs.svg)](https://pub.dev/packages/graphs) |
3132
| [html](pkgs/html/) | APIs for parsing and manipulating HTML content outside the browser. | [![issues](https://img.shields.io/badge/issues-4774bc)][html_issues] | [![pub package](https://img.shields.io/pub/v/html.svg)](https://pub.dev/packages/html) |
3233
| [io](pkgs/io/) | Utilities for the Dart VM Runtime including support for ANSI colors, file copying, and standard exit code values. | [![issues](https://img.shields.io/badge/issues-4774bc)][io_issues] | [![pub package](https://img.shields.io/pub/v/io.svg)](https://pub.dev/packages/io) |
@@ -67,6 +68,7 @@ don't naturally belong to other topic monorepos (like
6768
[extension_discovery_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aextension_discovery
6869
[file_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afile
6970
[file_testing_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afile_testing
71+
[glob_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aglob
7072
[graphs_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Agraphs
7173
[html_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ahtml
7274
[io_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aio

pkgs/glob/.github/dependabot.yml

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

pkgs/glob/.github/workflows/publish.yml

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

pkgs/glob/.github/workflows/test-package.yml

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

pkgs/glob/CHANGELOG.md

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

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

56
## 2.1.2
67

pkgs/glob/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: glob
2-
version: 2.1.3-wip
2+
version: 2.1.3
33
description: A library to perform Bash-style file and directory globbing.
44
repository: https://github.com/dart-lang/tools/tree/main/pkgs/glob
55

0 commit comments

Comments
 (0)