Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 16, 2024
1 parent 903e5cd commit bab3e3c
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 74 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@
"package:fixnum":
- changed-files:
- any-glob-to-any-file: 'pkgs/fixnum/**'

"package:path":
- changed-files:
- any-glob-to-any-file: 'pkgs/path/**'
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
name: Dart CI
name: package:path

on:
# Run on PRs and pushes to the default branch.
# Run CI on pushes to the main branch, and on PRs against main.
push:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/path.yaml'
- 'pkgs/path/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/path.yaml'
- 'pkgs/path/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

defaults:
run:
working-directory: pkgs/path/

jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev and stable.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
| [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) |
| [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) |
| [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) |

## Publishing automation

Expand Down
15 changes: 0 additions & 15 deletions pkgs/path/.github/dependabot.yml

This file was deleted.

37 changes: 0 additions & 37 deletions pkgs/path/.github/workflows/no-response.yml

This file was deleted.

14 changes: 0 additions & 14 deletions pkgs/path/.github/workflows/publish.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/path/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.9.1-wip
## 1.9.1

- Require Dart 3.4
- Move to `dart-lang/core` monorepo.

## 1.9.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/path/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Dart CI](https://github.com/dart-lang/path/actions/workflows/dart.yml/badge.svg)](https://github.com/dart-lang/path/actions/workflows/dart.yml)
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/path.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/path.yaml)
[![pub package](https://img.shields.io/pub/v/path.svg)](https://pub.dev/packages/path)
[![package publisher](https://img.shields.io/pub/publisher/path.svg)](https://pub.dev/packages/path/publisher)

Expand Down
2 changes: 1 addition & 1 deletion pkgs/path/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: path
version: 1.9.1-wip
version: 1.9.1
description: >-
A string-based path manipulation library. All of the path operations you know
and love, with solid support for Windows, POSIX (Linux and Mac OS X), and the
Expand Down

0 comments on commit bab3e3c

Please sign in to comment.