Skip to content

Commit ddf9f25

Browse files
committed
Moving fixes
1 parent a22b849 commit ddf9f25

File tree

5 files changed

+32
-8
lines changed

5 files changed

+32
-8
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:platform":
28+
- changed-files:
29+
- any-glob-to-any-file: 'pkgs/platform/**'

pkgs/platform/.github/workflows/platform.yml renamed to .github/workflows/platform.yaml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
11
name: Platform Package
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/platform.yaml'
9+
- 'pkgs/platform/**'
610
pull_request:
7-
branches: [ master ]
8-
workflow_dispatch:
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/platform.yaml'
14+
- 'pkgs/platform/**'
15+
schedule:
16+
- cron: "0 0 * * 0"
17+
env:
18+
PUB_ENVIRONMENT: bot.github
19+
20+
defaults:
21+
run:
22+
working-directory: pkgs/platform/
923

1024
jobs:
1125
correctness:

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+
| [platform](pkgs/platform/) | A pluggable, mockable platform information abstraction for Dart. | [![pub package](https://img.shields.io/pub/v/platform.svg)](https://pub.dev/packages/platform) |
1718

1819
## Publishing automation
1920

pkgs/platform/CHANGELOG.md

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

37
* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.

pkgs/platform/pubspec.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: platform
22
description: A pluggable, mockable platform information abstraction for Dart.
33
repository: https://github.com/dart-lang/core/tree/main/pkgs/platform
4-
issue_tracker: https://github.com/dart-lang/platform/issues
5-
version: 3.1.5
4+
issue_tracker: https://github.com/dart-lang/core/issues
5+
version: 3.1.6
6+
7+
topics:
8+
- information
9+
- platform
610

711
environment:
812
sdk: ^3.2.0
@@ -11,6 +15,3 @@ dev_dependencies:
1115
dart_flutter_team_lints: ^3.1.0
1216
test: ^1.16.8
1317

14-
topics:
15-
- information
16-
- platform

0 commit comments

Comments
 (0)