Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 15, 2024
1 parent 6f54342 commit 2d5587c
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 76 deletions.
5 changes: 5 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@
"package-args":
- changed-files:
- any-glob-to-any-file: 'pkgs/args/**'

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

Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
name: Dart CI

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

env:
PUB_ENVIRONMENT: bot.github

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

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 @@ -9,6 +9,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
| Package | Description | Version |
|---|---|---|
| [args](pkgs/args/) | Library for defining parsers for parsing raw command-line arguments into a set of options and values. | [![pub package](https://img.shields.io/pub/v/args.svg)](https://pub.dev/packages/args) |
| [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) |

## Publishing automation

Expand Down
15 changes: 0 additions & 15 deletions pkgs/crypto/.github/dependabot.yml

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 4 additions & 0 deletions pkgs/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.6

* Move to `dart-lang/core` monorepo.

## 3.0.5

* Revert switch to enable fast "sinks" on Wasm because it breaks `dart2js` with
Expand Down
2 changes: 1 addition & 1 deletion pkgs/crypto/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Dart CI](https://github.com/dart-lang/crypto/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/crypto/actions/workflows/test-package.yml)
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/crypto.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/crypto.yaml)
[![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto)
[![package publisher](https://img.shields.io/pub/publisher/crypto.svg)](https://pub.dev/packages/crypto/publisher)

Expand Down
4 changes: 2 additions & 2 deletions pkgs/crypto/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: crypto
version: 3.0.5
version: 3.0.6
description: Implementations of SHA, MD5, and HMAC cryptographic functions.
repository: https://github.com/dart-lang/crypto
repository: https://github.com/dart-lang/core/main/pkgs/crypto
topics:
- crypto
- cryptography
Expand Down

0 comments on commit 2d5587c

Please sign in to comment.