Skip to content

Commit bab3e3c

Browse files
committed
Moving fixes
1 parent 903e5cd commit bab3e3c

File tree

9 files changed

+23
-74
lines changed

9 files changed

+23
-74
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@
2323
"package:fixnum":
2424
- changed-files:
2525
- any-glob-to-any-file: 'pkgs/fixnum/**'
26+
27+
"package:path":
28+
- changed-files:
29+
- any-glob-to-any-file: 'pkgs/path/**'

pkgs/path/.github/workflows/dart.yml renamed to .github/workflows/path.yaml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1-
name: Dart CI
1+
name: package:path
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/path.yaml'
9+
- 'pkgs/path/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/path.yaml'
14+
- 'pkgs/path/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/path/
23+
1524
jobs:
1625
# Check code formatting and static analysis on a single OS (linux)
1726
# against Dart dev and stable.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
1414
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1515
| [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) |
1616
| [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) |
17+
| [path](pkgs/path/) | A string-based path manipulation library for all of the path operations you know and love. | [![pub package](https://img.shields.io/pub/v/path.svg)](https://pub.dev/packages/path) |
1718

1819
## Publishing automation
1920

pkgs/path/.github/dependabot.yml

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

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

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

pkgs/path/.github/workflows/publish.yaml

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

pkgs/path/CHANGELOG.md

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

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

56
## 1.9.0
67

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

pkgs/path/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: path
2-
version: 1.9.1-wip
2+
version: 1.9.1
33
description: >-
44
A string-based path manipulation library. All of the path operations you know
55
and love, with solid support for Windows, POSIX (Linux and Mac OS X), and the

0 commit comments

Comments
 (0)