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 66b5ae3 commit 9d22591
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 24 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:os_detect":
- changed-files:
- any-glob-to-any-file: 'pkgs/os_detect/**'
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
name: Dart CI
name: package:os_detect

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/os_detect.yaml'
- 'pkgs/os_detect/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/os_detect.yaml'
- 'pkgs/os_detect/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

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

jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
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) |
| [os_detect](pkgs/os_detect/) | Platform independent OS detection. | [![pub package](https://img.shields.io/pub/v/os_detect.svg)](https://pub.dev/packages/os_detect) |

## Publishing automation

Expand Down
16 changes: 0 additions & 16 deletions pkgs/os_detect/.github/dependabot.yml

This file was deleted.

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

- Require Dart 3.0
- Make work with VM's platform-constants.
- Move to `dart-lang/core` monorepo.

## 2.0.1

Expand Down
2 changes: 1 addition & 1 deletion pkgs/os_detect/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://github.com/dart-lang/os_detect/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/os_detect/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/os_detect.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/os_detect.yaml)
[![pub package](https://img.shields.io/pub/v/os_detect.svg)](https://pub.dev/packages/os_detect)
[![package publisher](https://img.shields.io/pub/publisher/os_detect.svg)](https://pub.dev/packages/os_detect/publisher)

Expand Down
2 changes: 1 addition & 1 deletion pkgs/os_detect/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: os_detect
version: 2.0.2-wip
version: 2.0.2
description: Platform independent OS detection.
repository: https://github.com/dart-lang/core/tree/main/pkgs/os_detect

Expand Down

0 comments on commit 9d22591

Please sign in to comment.