Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 25, 2024
1 parent 55c5b2a commit aabc387
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 75 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
- changed-files:
- any-glob-to-any-file: 'pkgs/cli_config/**'

'package:clock':
- changed-files:
- any-glob-to-any-file: 'pkgs/clock/**'

'package:coverage':
- changed-files:
- any-glob-to-any-file: 'pkgs/coverage/**'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
name: Dart CI
name: package:clock

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

env:
PUB_ENVIRONMENT: bot.github


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

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 @@ -16,6 +16,7 @@ don't naturally belong to other topic monorepos (like
| --- | --- | --- |
| [boolean_selector](pkgs/boolean_selector/) | A flexible syntax for boolean expressions, based on a simplified version of Dart's expression syntax. | [![pub package](https://img.shields.io/pub/v/boolean_selector.svg)](https://pub.dev/packages/boolean_selector) |
| [cli_config](pkgs/cli_config/) | A library to take config values from configuration files, CLI arguments, and environment variables. | [![pub package](https://img.shields.io/pub/v/cli_config.svg)](https://pub.dev/packages/cli_config) |
| [clock](pkgs/clock/) | A fakeable wrapper for dart:core clock APIs. | [![pub package](https://img.shields.io/pub/v/clock.svg)](https://pub.dev/packages/clock) |
| [coverage](pkgs/coverage/) | Coverage data manipulation and formatting. | [![pub package](https://img.shields.io/pub/v/coverage.svg)](https://pub.dev/packages/coverage) |
| [extension_discovery](pkgs/extension_discovery/) | A convention and utilities for package extension discovery. | [![pub package](https://img.shields.io/pub/v/extension_discovery.svg)](https://pub.dev/packages/extension_discovery) |
| [file](pkgs/file/) | A pluggable, mockable file system abstraction for Dart. | [![pub package](https://img.shields.io/pub/v/file.svg)](https://pub.dev/packages/file) |
Expand Down
15 changes: 0 additions & 15 deletions pkgs/clock/.github/dependabot.yml

This file was deleted.

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

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/clock/.github/workflows/publish.yaml

This file was deleted.

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

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

## 1.1.1

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

Expand Down
2 changes: 1 addition & 1 deletion pkgs/clock/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: clock
version: 1.1.2-wip
version: 1.1.2
description: A fakeable wrapper for dart:core clock APIs.
repository: https://github.com/dart-lang/tools/tree/main/pkgs/clock

Expand Down

0 comments on commit aabc387

Please sign in to comment.