Skip to content

Commit 76c4e02

Browse files
committed
Merge fixes
1 parent de2fc8b commit 76c4e02

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

pkgs/oauth2/.github/workflows/test-package.yml renamed to .github/workflows/oauth2.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ name: Dart CI
33
on:
44
# Run on PRs and pushes to the default branch.
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/oauth2.yml'
9+
- 'pkgs/oauth2/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/oauth2.yml'
14+
- 'pkgs/oauth2/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

@@ -17,6 +23,9 @@ jobs:
1723
# against the oldest supported SDK.
1824
analyze:
1925
runs-on: ubuntu-latest
26+
defaults:
27+
run:
28+
working-directory: pkgs/oauth2/
2029
strategy:
2130
fail-fast: false
2231
matrix:
@@ -45,6 +54,9 @@ jobs:
4554
test:
4655
needs: analyze
4756
runs-on: ${{ matrix.os }}
57+
defaults:
58+
run:
59+
working-directory: pkgs/oauth2/
4860
strategy:
4961
fail-fast: false
5062
matrix:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ don't naturally belong to other topic monorepos (like
1919
| [graphs](pkgs/graphs/) | Graph algorithms that operate on graphs in any representation | [![pub package](https://img.shields.io/pub/v/graphs.svg)](https://pub.dev/packages/graphs) |
2020
| [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [![pub package](https://img.shields.io/pub/v/unified_analytics.svg)](https://pub.dev/packages/unified_analytics) |
2121
| [source_map_stack_trace](pkgs/source_map_stack_trace/) | A package for applying source maps to stack traces. | [![pub package](https://img.shields.io/pub/v/source_map_stack_trace.svg)](https://pub.dev/packages/source_map_stack_trace) |
22+
| [oauth2](pkgs/oauth2/) | A client library for authenticatingand making requests via OAuth2. | [![pub package](https://img.shields.io/pub/v/oauth2.svg)](https://pub.dev/packages/oauth2) |
2223

2324
## Publishing automation
2425

pkgs/oauth2/.github/dependabot.yaml

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

pkgs/oauth2/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 2.0.3-wip
1+
## 2.0.3
22

33
* Require `package:http` v1.0.0
4+
* Move to `dart-lang/tools`.
45

56
## 2.0.2
67

pkgs/oauth2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Dart CI](https://github.com/dart-lang/oauth2/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/oauth2/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/tools/actions/workflows/oauth2.yml/badge.svg)](https://github.com/dart-lang/tools/actions/workflows/oauth2.yml)
22
[![pub package](https://img.shields.io/pub/v/oauth2.svg)](https://pub.dev/packages/oauth2)
33
[![package publisher](https://img.shields.io/pub/publisher/oauth2.svg)](https://pub.dev/packages/oauth2/publisher)
44

pkgs/oauth2/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: oauth2
2-
version: 2.0.3-wip
2+
version: 2.0.3
33
description: >-
44
A client library for authenticating with a remote service via OAuth2 on
55
behalf of a user, and making authorized HTTP requests with the user's
66
OAuth2 credentials.
7-
repository: https://github.com/dart-lang/oauth2
7+
repository: https://github.com/dart-lang/tools/tree/main/pkgs/oauth2
88

99
environment:
1010
sdk: ^3.0.0

0 commit comments

Comments
 (0)