From 1d99aaacbf709a2284c6eee3583d0fafcfec21da Mon Sep 17 00:00:00 2001 From: Moritz Date: Wed, 11 Dec 2024 14:22:30 +0100 Subject: [PATCH] Moving fixes --- .github/labeler.yml | 4 ++++ .../workflows/term_glyph.yaml | 17 ++++++++++++++--- README.md | 1 + pkgs/term_glyph/.github/dependabot.yml | 15 --------------- pkgs/term_glyph/CHANGELOG.md | 3 ++- pkgs/term_glyph/README.md | 2 +- pkgs/term_glyph/pubspec.yaml | 2 +- 7 files changed, 23 insertions(+), 21 deletions(-) rename pkgs/term_glyph/.github/workflows/test-package.yml => .github/workflows/term_glyph.yaml (85%) delete mode 100644 pkgs/term_glyph/.github/dependabot.yml diff --git a/.github/labeler.yml b/.github/labeler.yml index 1cc4b2058..4c93a3929 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -108,6 +108,10 @@ - changed-files: - any-glob-to-any-file: 'pkgs/sse/**' +'package:term_glyph': + - changed-files: + - any-glob-to-any-file: 'pkgs/term_glyph/**' + 'package:unified_analytics': - changed-files: - any-glob-to-any-file: 'pkgs/unified_analytics/**' diff --git a/pkgs/term_glyph/.github/workflows/test-package.yml b/.github/workflows/term_glyph.yaml similarity index 85% rename from pkgs/term_glyph/.github/workflows/test-package.yml rename to .github/workflows/term_glyph.yaml index 15b3b623e..5b3b3209b 100644 --- a/pkgs/term_glyph/.github/workflows/test-package.yml +++ b/.github/workflows/term_glyph.yaml @@ -1,17 +1,28 @@ -name: Dart CI +name: package:term_glyph on: # Run on PRs and pushes to the default branch. push: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/term_glyph.yaml' + - 'pkgs/term_glyph/**' pull_request: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/term_glyph.yaml' + - 'pkgs/term_glyph/**' schedule: - cron: "0 0 * * 0" env: PUB_ENVIRONMENT: bot.github + +defaults: + run: + working-directory: pkgs/term_glyph/ + jobs: # Check code formatting and static analysis on a single OS (linux) # against Dart dev. diff --git a/README.md b/README.md index 79d1dde21..fc9fa4b41 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ don't naturally belong to other topic monorepos (like | [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) | | [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) | | [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) | +| [term_glyph](pkgs/term_glyph/) | Useful Unicode glyphs and ASCII substitutes. | [![package issues](https://img.shields.io/badge/package:term_glyph-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aterm_glyph) | [![pub package](https://img.shields.io/pub/v/term_glyph.svg)](https://pub.dev/packages/term_glyph) | | [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) | ## Publishing automation diff --git a/pkgs/term_glyph/.github/dependabot.yml b/pkgs/term_glyph/.github/dependabot.yml deleted file mode 100644 index cde02ad6a..000000000 --- a/pkgs/term_glyph/.github/dependabot.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Dependabot configuration file. -# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates -version: 2 - -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - labels: - - autosubmit - groups: - github-actions: - patterns: - - "*" diff --git a/pkgs/term_glyph/CHANGELOG.md b/pkgs/term_glyph/CHANGELOG.md index d25ef1ab5..b7359cfb7 100644 --- a/pkgs/term_glyph/CHANGELOG.md +++ b/pkgs/term_glyph/CHANGELOG.md @@ -1,6 +1,7 @@ -## 1.2.2-wip +## 1.2.2 * Require Dart 3.1 +* Move to `dart-lang/tools` monorepo. ## 1.2.1 diff --git a/pkgs/term_glyph/README.md b/pkgs/term_glyph/README.md index 3a75d0606..75039aaeb 100644 --- a/pkgs/term_glyph/README.md +++ b/pkgs/term_glyph/README.md @@ -1,4 +1,4 @@ -[![Dart CI](https://github.com/dart-lang/term_glyph/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/term_glyph/actions/workflows/test-package.yml) +[![Build Status](https://github.com/dart-lang/tools/actions/workflows/term_glyph.yaml/badge.svg)](https://github.com/dart-lang/tools/actions/workflows/term_glyph.yaml) [![pub package](https://img.shields.io/pub/v/term_glyph.svg)](https://pub.dev/packages/term_glyph) [![package publisher](https://img.shields.io/pub/publisher/term_glyph.svg)](https://pub.dev/packages/term_glyph/publisher) diff --git a/pkgs/term_glyph/pubspec.yaml b/pkgs/term_glyph/pubspec.yaml index 2fb408774..c429307b9 100644 --- a/pkgs/term_glyph/pubspec.yaml +++ b/pkgs/term_glyph/pubspec.yaml @@ -1,5 +1,5 @@ name: term_glyph -version: 1.2.2-wip +version: 1.2.2 description: Useful Unicode glyphs and ASCII substitutes. repository: https://github.com/dart-lang/tools/tree/main/pkgs/term_glyph