Skip to content

Commit 1d99aaa

Browse files
committed
Moving fixes
1 parent ce1f43e commit 1d99aaa

File tree

7 files changed

+23
-21
lines changed

7 files changed

+23
-21
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:term_glyph':
112+
- changed-files:
113+
- any-glob-to-any-file: 'pkgs/term_glyph/**'
114+
111115
'package:unified_analytics':
112116
- changed-files:
113117
- any-glob-to-any-file: 'pkgs/unified_analytics/**'

pkgs/term_glyph/.github/workflows/test-package.yml renamed to .github/workflows/term_glyph.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
1-
name: Dart CI
1+
name: package:term_glyph
22

33
on:
44
# Run on PRs and pushes to the default branch.
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/term_glyph.yaml'
9+
- 'pkgs/term_glyph/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/term_glyph.yaml'
14+
- 'pkgs/term_glyph/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
1420

21+
22+
defaults:
23+
run:
24+
working-directory: pkgs/term_glyph/
25+
1526
jobs:
1627
# Check code formatting and static analysis on a single OS (linux)
1728
# against Dart dev.

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+
| [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) |
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/term_glyph/.github/dependabot.yml

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

pkgs/term_glyph/CHANGELOG.md

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

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

56
## 1.2.1
67

pkgs/term_glyph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![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)
1+
[![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)
22
[![pub package](https://img.shields.io/pub/v/term_glyph.svg)](https://pub.dev/packages/term_glyph)
33
[![package publisher](https://img.shields.io/pub/publisher/term_glyph.svg)](https://pub.dev/packages/term_glyph/publisher)
44

pkgs/term_glyph/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: term_glyph
2-
version: 1.2.2-wip
2+
version: 1.2.2
33
description: Useful Unicode glyphs and ASCII substitutes.
44
repository: https://github.com/dart-lang/tools/tree/main/pkgs/term_glyph
55

0 commit comments

Comments
 (0)