Skip to content

Commit 7d61126

Browse files
committed
Moving fixes
1 parent 537536a commit 7d61126

File tree

9 files changed

+25
-73
lines changed

9 files changed

+25
-73
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
- changed-files:
1313
- any-glob-to-any-file: 'pkgs/characters/**'
1414

15+
"package:collection":
16+
- changed-files:
17+
- any-glob-to-any-file: 'pkgs/collection/**'
18+
1519
"package:convert":
1620
- changed-files:
1721
- any-glob-to-any-file: 'pkgs/convert/**'

pkgs/collection/.github/workflows/ci.yml renamed to .github/workflows/collection.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
1-
name: Dart CI
1+
name: package:collection
22

33
on:
4+
# Run CI on pushes to the main branch, and on PRs against main.
45
push:
5-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/collection.yaml'
9+
- 'pkgs/collection/**'
610
pull_request:
7-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/collection.yaml'
14+
- 'pkgs/collection/**'
815
schedule:
916
- cron: "0 0 * * 0"
1017

1118
env:
1219
PUB_ENVIRONMENT: bot.github
1320

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
1111
| [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) |
1212
| [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
| [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) |
14+
| [collection](pkgs/collection/) | Collections and utilities functions and classes related to collections. | [![pub package](https://img.shields.io/pub/v/collection.svg)](https://pub.dev/packages/collection) |
1415
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1516
| [crypto](pkgs/crypto/) | Implementations of SHA, MD5, and HMAC cryptographic functions. | [![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto) |
1617
| [fixnum](pkgs/fixnum/) | Library for 32- and 64-bit signed fixed-width integers. | [![pub package](https://img.shields.io/pub/v/fixnum.svg)](https://pub.dev/packages/fixnum) |

pkgs/collection/.github/dependabot.yaml

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

pkgs/collection/.github/workflows/no-response.yml

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

pkgs/collection/.github/workflows/publish.yaml

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

pkgs/collection/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.19.1
2+
3+
- Move to `dart-lang/core` monorepo.
4+
15
## 1.19.0
26

37
- Adds `shuffled` to `IterableExtension`.

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

pkgs/collection/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: collection
2-
version: 1.19.0
2+
version: 1.19.1
33
description: >-
44
Collections and utilities functions and classes related to collections.
55
repository: https://github.com/dart-lang/core/tree/main/pkgs/collection

0 commit comments

Comments
 (0)