Skip to content

Commit

Permalink
update glob infra and readme post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Jan 22, 2025
1 parent cb1686c commit 5db5ae6
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 107 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/unified_analytics_event.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "package:unified_analytics - request a new event"
description: "Create a request for collecting a new event or new event data."
labels: "package:unified_analytics"
labels:
- "package:unified_analytics"
body:
- type: markdown
attributes:
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/unified_analytics_user_property.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "package:unified_analytics - request a new user property"
description: "Create a request for collecting a new user property."
labels: "package:unified_analytics"
labels:
- "package:unified_analytics"
body:
- type: markdown
attributes:
Expand Down
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
- changed-files:
- any-glob-to-any-file: 'pkgs/file_testing/**'

'package:glob':
- changed-files:
- any-glob-to-any-file: 'pkgs/glob/**'

'package:graphs':
- changed-files:
- any-glob-to-any-file: 'pkgs/graphs/**'
Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/glob.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: package:glob

permissions: read-all

on:
# Run CI on all PRs (against any branch) and on pushes to the main branch.
pull_request:
paths:
- '.github/workflows/glob.yaml'
- 'pkgs/grglobaphs/**'
push:
branches: [ main ]
paths:
- '.github/workflows/glob.yaml'
- 'pkgs/glob/**'
schedule:
- cron: '0 0 * * 0' # weekly

defaults:
run:
working-directory: pkgs/glob

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [stable, dev]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
with:
sdk: ${{ matrix.sdk }}
- run: dart pub get
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
if: ${{ matrix.sdk == 'stable' }}
- run: dart test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ don't naturally belong to other topic monorepos (like
| [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) |
| [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) |
| [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) |
| [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) |
| [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) |
| [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) |
| [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) |
Expand Down Expand Up @@ -67,6 +68,7 @@ don't naturally belong to other topic monorepos (like
[extension_discovery_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aextension_discovery
[file_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afile
[file_testing_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afile_testing
[glob_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aglob
[graphs_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Agraphs
[html_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ahtml
[io_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aio
Expand Down
14 changes: 0 additions & 14 deletions pkgs/glob/.github/dependabot.yml

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/glob/.github/workflows/publish.yml

This file was deleted.

72 changes: 0 additions & 72 deletions pkgs/glob/.github/workflows/test-package.yml

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/glob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.1.3-wip
## 2.1.3

- Require Dart 3.3.
- Move to `dart-lang/tools` monorepo.

## 2.1.2

Expand Down
2 changes: 1 addition & 1 deletion pkgs/glob/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: glob
version: 2.1.3-wip
version: 2.1.3
description: A library to perform Bash-style file and directory globbing.
repository: https://github.com/dart-lang/tools/tree/main/pkgs/glob

Expand Down

0 comments on commit 5db5ae6

Please sign in to comment.