Skip to content

Commit e309d4e

Browse files
committed
Moving fixes
1 parent dcac9f1 commit e309d4e

File tree

8 files changed

+25
-40
lines changed

8 files changed

+25
-40
lines changed

.github/labeler.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
"package-args":
44
- changed-files:
55
- any-glob-to-any-file: 'pkgs/args/**'
6+
7+
"package-characters":
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/characters/**'

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
name: Dart CI
22

33
on:
4-
# Run on PRs and pushes to the default branch.
4+
# Run CI on pushes to the main branch, and on PRs against main.
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/characters.yaml'
9+
- 'pkgs/characters/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/characters.yaml'
14+
- 'pkgs/characters/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/characters/
23+
1524
jobs:
1625
# Check code formatting and static analysis on a single OS (linux)
1726
# against dev, stable, and 2.19.0 (the package's lower bound).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
88

99
| Package | Description | Version |
1010
|---|---|---|
11-
| [args](pkgs/args/) | Library for defining parsers for parsing raw command-line arguments into a set
12-
of options and values. | [![pub package](https://img.shields.io/pub/v/args.svg)](https://pub.dev/packages/args) |
11+
| [args](pkgs/args/) | Library for defining parsers for parsing raw command-line arguments into a set of options and values. | [![pub package](https://img.shields.io/pub/v/args.svg)](https://pub.dev/packages/args) |
12+
| [characters](pkgs/characters/) | String replacement with operations that are Unicode/grapheme cluster aware. | [![pub package](https://img.shields.io/pub/v/characters.svg)](https://pub.dev/packages/characters) |
1313

1414
## Publishing automation
1515

pkgs/characters/.github/dependabot.yml

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

pkgs/characters/.github/workflows/publish.yaml

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

pkgs/characters/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 1.3.1-wip
1+
## 1.3.1
22

33
* Fixed README rendering on pub.dev and API docs.
4-
* Require Dart `^3.4.0`
4+
* Require Dart `^3.4.0`.
5+
* Move to `dart-lang/core` monorepo.
56

67
## 1.3.0
78

pkgs/characters/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://github.com/dart-lang/characters/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/characters/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
1+
[![Build Status](https://github.com/dart-lang/core/actions/workflows/characters.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/characters.yaml)
22
[![pub package](https://img.shields.io/pub/v/characters.svg)](https://pub.dev/packages/characters)
33
[![package publisher](https://img.shields.io/pub/publisher/characters.svg)](https://pub.dev/packages/characters/publisher)
44

pkgs/characters/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: characters
2-
version: 1.3.1-wip
2+
version: 1.3.1
33
description: >-
44
String replacement with operations that are Unicode/grapheme cluster aware.
5-
repository: https://github.com/dart-lang/characters
5+
repository: https://github.com/dart-lang/core/main/pkgs/characters
66

77
topics:
88
- strings

0 commit comments

Comments
 (0)