Skip to content

Commit

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

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

'package:cli_config':
- changed-files:
- any-glob-to-any-file: 'pkgs/cli_config/**'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
name: ci
name: package:boolean_selector

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

env:
PUB_ENVIRONMENT: bot.github


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

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 @@ don't naturally belong to other topic monorepos (like

| Package | Description | Version |
| --- | --- | --- |
| [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) |
| [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) |
Expand Down
15 changes: 0 additions & 15 deletions pkgs/boolean_selector/.github/dependabot.yml

This file was deleted.

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

* Increase the SDK minimum to `3.1.0`.
* Move to `dart-lang/tools` monorepo.

## 2.1.1

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

Expand Down
2 changes: 1 addition & 1 deletion pkgs/boolean_selector/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: boolean_selector
version: 2.1.2-wip
version: 2.1.2
description: >-
A flexible syntax for boolean expressions, based on a simplified version of
Dart's expression syntax.
Expand Down

0 comments on commit d1f5418

Please sign in to comment.