diff --git a/.github/labeler.yml b/.github/labeler.yml index c3d5de0b9..55df9dc25 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -8,6 +8,10 @@ - changed-files: - any-glob-to-any-file: 'pkgs/boolean_selector/**' +'package:browser_launcher': + - changed-files: + - any-glob-to-any-file: 'pkgs/browser_launcher/**' + 'package:cli_config': - changed-files: - any-glob-to-any-file: 'pkgs/cli_config/**' diff --git a/pkgs/browser_launcher/.github/workflows/dart.yml b/.github/workflows/browser_launcher.yaml similarity index 68% rename from pkgs/browser_launcher/.github/workflows/dart.yml rename to .github/workflows/browser_launcher.yaml index 6e1bfe272..bdc6bba9d 100644 --- a/pkgs/browser_launcher/.github/workflows/dart.yml +++ b/.github/workflows/browser_launcher.yaml @@ -1,11 +1,17 @@ -name: Dart +name: package:browser_launcher on: # Run on PRs and pushes to the default branch. push: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/browser_launcher.yml' + - 'pkgs/browser_launcher/**' pull_request: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/browser_launcher.yml' + - 'pkgs/browser_launcher/**' schedule: - cron: "0 0 * * 0" @@ -13,6 +19,10 @@ env: PUB_ENVIRONMENT: bot.github DISPLAY: ':99' +defaults: + run: + working-directory: pkgs/browser_launcher/ + jobs: test: runs-on: ubuntu-latest diff --git a/README.md b/README.md index ac4edf204..1c6999914 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ don't naturally belong to other topic monorepos (like | Package | Description | Version | | --- | --- | --- | | [boolean_selector](pkgs/boolean_selector/) | A flexible syntax for boolean expressions, based on a simplified version of Dart's expression syntax. | [![pub package](https://img.shields.io/pub/v/boolean_selector.svg)](https://pub.dev/packages/boolean_selector) | +| [browser_launcher](pkgs/browser_launcher/) | Provides a standardized way to launch web browsers for testing and tools. | [![pub package](https://img.shields.io/pub/v/browser_launcher.svg)](https://pub.dev/packages/browser_launcher) | | [cli_config](pkgs/cli_config/) | A library to take config values from configuration files, CLI arguments, and environment variables. | [![pub package](https://img.shields.io/pub/v/cli_config.svg)](https://pub.dev/packages/cli_config) | | [coverage](pkgs/coverage/) | Coverage data manipulation and formatting. | [![pub package](https://img.shields.io/pub/v/coverage.svg)](https://pub.dev/packages/coverage) | | [extension_discovery](pkgs/extension_discovery/) | A convention and utilities for package extension discovery. | [![pub package](https://img.shields.io/pub/v/extension_discovery.svg)](https://pub.dev/packages/extension_discovery) | diff --git a/pkgs/browser_launcher/.github/dependabot.yml b/pkgs/browser_launcher/.github/dependabot.yml deleted file mode 100644 index 5a11cf58c..000000000 --- a/pkgs/browser_launcher/.github/dependabot.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Set update schedule for GitHub Actions - -version: 2 -updates: - -- package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - labels: - - autosubmit - groups: - github-actions: - patterns: - - "*" diff --git a/pkgs/browser_launcher/CHANGELOG.md b/pkgs/browser_launcher/CHANGELOG.md index 4fb8a354d..f37505648 100644 --- a/pkgs/browser_launcher/CHANGELOG.md +++ b/pkgs/browser_launcher/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.3 + +- Move to `dart-lang/tools` monorepo. + ## 1.1.2 - Require Dart 3.4 diff --git a/pkgs/browser_launcher/README.md b/pkgs/browser_launcher/README.md index cf534ab3e..f6398b63c 100644 --- a/pkgs/browser_launcher/README.md +++ b/pkgs/browser_launcher/README.md @@ -1,4 +1,4 @@ -[![Dart](https://github.com/dart-lang/browser_launcher/workflows/Dart/badge.svg)](https://github.com/dart-lang/browser_launcher/actions?query=workflow%3ADart+branch%3Amaster) +[![Build Status](https://github.com/dart-lang/tools/actions/workflows/browser_launcher.yaml/badge.svg)](https://github.com/dart-lang/tools/actions/workflows/browser_launcher.yaml) [![pub package](https://img.shields.io/pub/v/browser_launcher.svg)](https://pub.dev/packages/browser_launcher) [![package publisher](https://img.shields.io/pub/publisher/browser_launcher.svg)](https://pub.dev/packages/browser_launcher/publisher) diff --git a/pkgs/browser_launcher/pubspec.yaml b/pkgs/browser_launcher/pubspec.yaml index ac083ca70..1647d5251 100644 --- a/pkgs/browser_launcher/pubspec.yaml +++ b/pkgs/browser_launcher/pubspec.yaml @@ -1,5 +1,5 @@ name: browser_launcher -version: 1.1.2 +version: 1.1.3 description: Provides a standardized way to launch web browsers for testing and tools. repository: https://github.com/dart-lang/tools/tree/main/pkgs/browser_launcher