Skip to content

Commit c2125f4

Browse files
committed
Moving fixes
1 parent ca6aa3a commit c2125f4

File tree

9 files changed

+25
-40
lines changed

9 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-async":
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/async/**'

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,25 @@ name: Dart CI
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/async.yaml'
9+
- 'pkgs/async/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/async.yaml'
14+
- 'pkgs/async/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
1420

21+
defaults:
22+
run:
23+
working-directory: pkgs/async/
24+
1525
jobs:
1626
# Check code formatting and static analysis on a single OS (linux)
1727
# against Dart dev.

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+
| [async](pkgs/async/) | Utility functions and classes related to the 'dart:async' library.| [![pub package](https://img.shields.io/pub/v/async.svg)](https://pub.dev/packages/async) |
1313

1414
## Publishing automation
1515

pkgs/async/.github/dependabot.yml

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

pkgs/async/.github/workflows/publish.yaml

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

pkgs/async/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 2.12.0-wip
1+
## 2.12.0
22

3-
- Require Dart 3.4
3+
- Require Dart 3.4.
4+
- Move to `dart-lang/core` monorepo.
45

56
## 2.11.0
67

@@ -13,7 +14,7 @@
1314
* Add `CancelableOperation.thenOperation` which gives more flexibility to
1415
complete the resulting operation.
1516
* Add `CancelableCompleter.completeOperation`.
16-
* Require Dart 2.18
17+
* Require Dart 2.18.
1718

1819
## 2.9.0
1920

pkgs/async/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/async/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/async/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/async.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/async.yaml)
22
[![pub package](https://img.shields.io/pub/v/async.svg)](https://pub.dev/packages/async)
33
[![package publisher](https://img.shields.io/pub/publisher/async.svg)](https://pub.dev/packages/async/publisher)
44

pkgs/async/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: async
2-
version: 2.12.0-wip
2+
version: 2.12.0
33
description: Utility functions and classes related to the 'dart:async' library.
4-
repository: https://github.com/dart-lang/async
4+
repository: https://github.com/dart-lang/core/main/pkgs/async
55

66
environment:
77
sdk: ^3.4.0

pkgs/placeholder

Whitespace-only changes.

0 commit comments

Comments
 (0)