Skip to content

Commit 7a71ad6

Browse files
authored
Moving fixes (#736)
1 parent 0ca0d5c commit 7a71ad6

File tree

10 files changed

+24
-54
lines changed

10 files changed

+24
-54
lines changed

.github/ISSUE_TEMPLATE/lints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:lints"
33
about: "Create a bug or file a feature request against package:lints."
44
labels: "package:lints"
5-
---
5+
---

.github/labeler.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for .github/workflows/pull_request_label.yml.
1+
# Configuration for .github/workflows/pull_request_label.yaml.
22

33
'type-infra':
44
- changed-files:
@@ -32,6 +32,10 @@
3232
- changed-files:
3333
- any-glob-to-any-file: 'pkgs/fixnum/**'
3434

35+
'package:lints':
36+
- changed-files:
37+
- any-glob-to-any-file: 'pkgs/lints/**'
38+
3539
'package:logging':
3640
- changed-files:
3741
- any-glob-to-any-file: 'pkgs/logging/**'

pkgs/lints/.github/workflows/validate.yml renamed to .github/workflows/lints.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
1-
name: validate
1+
name: package:lints
22

3-
# Controls when the action will run.
43
on:
5-
# Triggers the workflow on push or pull request events but only for the main branch
4+
# Run CI on pushes to the main branch, and on PRs against main.
65
push:
76
branches: [ main ]
7+
paths:
8+
- '.github/workflows/lints.yaml'
9+
- 'pkgs/lints/**'
810
pull_request:
911
branches: [ main ]
10-
# Run weekly
12+
paths:
13+
- '.github/workflows/lints.yaml'
14+
- 'pkgs/lints/**'
1115
schedule:
1216
- cron: "0 0 * * 0"
17+
env:
18+
PUB_ENVIRONMENT: bot.github
19+
20+
defaults:
21+
run:
22+
working-directory: pkgs/lints/
1323

1424
jobs:
1525
build:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
1515
| [convert](pkgs/convert/) | Utilities for converting between data representations. Provides a number of Sink, Codec, Decoder, and Encoder types. | [![package issues](https://img.shields.io/badge/package:convert-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aconvert) | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1616
| [crypto](pkgs/crypto/) | Implementations of SHA, MD5, and HMAC cryptographic functions. | [![package issues](https://img.shields.io/badge/package:crypto-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Acrypto) | [![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto) |
1717
| [fixnum](pkgs/fixnum/) | Library for 32- and 64-bit signed fixed-width integers with consistent behavior between native and JS runtimes. | [![package issues](https://img.shields.io/badge/package:fixnum-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afixnum) | [![pub package](https://img.shields.io/pub/v/fixnum.svg)](https://pub.dev/packages/fixnum) |
18+
| [lints](pkgs/lints/) | Official Dart lint rules. Defines the 'core' and 'recommended' set of lints suggested by the Dart team.
19+
| [![package issues](https://img.shields.io/badge/issues-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Alints) | [![pub package](https://img.shields.io/pub/v/lints.svg)](https://pub.dev/packages/lints) |
1820
| [logging](pkgs/logging/) | Provides APIs for debugging and error logging, similar to loggers in other languages, such as the Closure JS Logger and java.util.logging.Logger. | [![package issues](https://img.shields.io/badge/package:logging-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Alogging) | [![pub package](https://img.shields.io/pub/v/logging.svg)](https://pub.dev/packages/logging) |
1921
| [os_detect](pkgs/os_detect/) | Platform independent OS detection. | [![package issues](https://img.shields.io/badge/package:os_detect-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aos_detect) | [![pub package](https://img.shields.io/pub/v/os_detect.svg)](https://pub.dev/packages/os_detect) |
2022
| [path](pkgs/path/) | A string-based path manipulation library. | [![package issues](https://img.shields.io/badge/package:path-4774bc)](https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apath) | [![pub package](https://img.shields.io/pub/v/path.svg)](https://pub.dev/packages/path) |

pkgs/lints/.github/ISSUE_TEMPLATE/config.yml

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

pkgs/lints/.github/ISSUE_TEMPLATE/lint-propoposal.md

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

pkgs/lints/.github/dependabot.yaml

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

pkgs/lints/.github/workflows/publish.yaml

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

pkgs/lints/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 5.1.1
22

33
- Updated the SDK lower bound to 3.6.
4+
- Move to `dart-lang/core` monorepo.
45

56
## 5.1.0
67

pkgs/lints/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://github.com/dart-lang/lints/workflows/validate/badge.svg)](https://github.com/dart-lang/lints/actions?query=branch%3Amain)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/lints.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/lints.yaml)
22
[![pub package](https://img.shields.io/pub/v/lints.svg)](https://pub.dev/packages/lints)
33
[![package publisher](https://img.shields.io/pub/publisher/lints.svg)](https://pub.dev/packages/lints/publisher)
44

0 commit comments

Comments
 (0)