Skip to content

Commit 9a4c94d

Browse files
committed
Moving fixes
1 parent f3cddde commit 9a4c94d

File tree

9 files changed

+21
-88
lines changed

9 files changed

+21
-88
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,7 @@
111111
'package:unified_analytics':
112112
- changed-files:
113113
- any-glob-to-any-file: 'pkgs/unified_analytics/**'
114+
115+
'package:yaml_edit':
116+
- changed-files:
117+
- any-glob-to-any-file: 'pkgs/yaml_edit/**'

pkgs/yaml_edit/.github/workflows/test-package.yml renamed to .github/workflows/yaml_edit.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
1-
name: Dart CI
1+
name: package:yaml_edit
22

33
on:
44
# Run on PRs and pushes to the default branch.
55
push:
66
branches: [ main ]
7+
paths:
8+
- '.github/workflows/yaml_edit.yaml'
9+
- 'pkgs/yaml_edit/**'
710
pull_request:
811
branches: [ main ]
12+
paths:
13+
- '.github/workflows/yaml_edit.yaml'
14+
- 'pkgs/yaml_edit/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
1420

21+
22+
defaults:
23+
run:
24+
working-directory: pkgs/yaml_edit/
25+
1526
jobs:
1627
# Check code formatting and static analysis on a single OS (linux)
1728
# against Dart dev.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ don't naturally belong to other topic monorepos (like
4141
| [source_span](pkgs/source_span/) | Provides a standard representation for source code locations and spans. | [![package issues](https://img.shields.io/badge/package:source_span-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_span) | [![pub package](https://img.shields.io/pub/v/source_span.svg)](https://pub.dev/packages/source_span) |
4242
| [sse](pkgs/sse/) | Provides client and server functionality for setting up bi-directional communication through Server Sent Events (SSE) and corresponding POST requests. | [![package issues](https://img.shields.io/badge/package:sse-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asse) | [![pub package](https://img.shields.io/pub/v/sse.svg)](https://pub.dev/packages/sse) |
4343
| [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [![package issues](https://img.shields.io/badge/package:unified_analytics-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [![pub package](https://img.shields.io/pub/v/unified_analytics.svg)](https://pub.dev/packages/unified_analytics) |
44+
| [yaml_edit](pkgs/yaml_edit/) | A library for YAML manipulation with comment and whitespace preservation. | [![package issues](https://img.shields.io/badge/package:yaml_edit-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ayaml_edit) | [![pub package](https://img.shields.io/pub/v/yaml_edit.svg)](https://pub.dev/packages/yaml_edit) |
4445

4546
## Publishing automation
4647

pkgs/yaml_edit/.github/dependabot.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

pkgs/yaml_edit/.github/workflows/no-response.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

pkgs/yaml_edit/.github/workflows/post_summaries.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

pkgs/yaml_edit/.github/workflows/publish.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

pkgs/yaml_edit/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2.2.2-wip
1+
## 2.2.2
22

33
- Suppress warnings previously printed to `stdout` when parsing YAML internally.
44
- Fix error thrown when inserting duplicate keys to different maps in the same
@@ -14,6 +14,8 @@
1414

1515
- Require Dart 3.1
1616

17+
- Move to `dart-lang/tools` monorepo.
18+
1719
## 2.2.1
1820

1921
- Require Dart 3.0

pkgs/yaml_edit/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: yaml_edit
2-
version: 2.2.2-wip
2+
version: 2.2.2
33
description: >-
44
A library for YAML manipulation with comment and whitespace preservation.
55
repository: https://github.com/dart-lang/tools/tree/main/pkgs/yaml_edit

0 commit comments

Comments
 (0)