Skip to content

Commit

Permalink
Merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Aug 21, 2024
1 parent de2fc8b commit 76c4e02
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ name: Dart CI
on:
# Run on PRs and pushes to the default branch.
push:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/oauth2.yml'
- 'pkgs/oauth2/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/oauth2.yml'
- 'pkgs/oauth2/**'
schedule:
- cron: "0 0 * * 0"

Expand All @@ -17,6 +23,9 @@ jobs:
# against the oldest supported SDK.
analyze:
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/oauth2/
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -45,6 +54,9 @@ jobs:
test:
needs: analyze
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: pkgs/oauth2/
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ don't naturally belong to other topic monorepos (like
| [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) |
| [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) |
| [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) |
| [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) |

## Publishing automation

Expand Down
14 changes: 0 additions & 14 deletions pkgs/oauth2/.github/dependabot.yaml

This file was deleted.

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

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

## 2.0.2

Expand Down
2 changes: 1 addition & 1 deletion pkgs/oauth2/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![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)
[![Dart CI](https://github.com/dart-lang/tools/actions/workflows/oauth2.yml/badge.svg)](https://github.com/dart-lang/tools/actions/workflows/oauth2.yml)
[![pub package](https://img.shields.io/pub/v/oauth2.svg)](https://pub.dev/packages/oauth2)
[![package publisher](https://img.shields.io/pub/publisher/oauth2.svg)](https://pub.dev/packages/oauth2/publisher)

Expand Down
4 changes: 2 additions & 2 deletions pkgs/oauth2/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: oauth2
version: 2.0.3-wip
version: 2.0.3
description: >-
A client library for authenticating with a remote service via OAuth2 on
behalf of a user, and making authorized HTTP requests with the user's
OAuth2 credentials.
repository: https://github.com/dart-lang/oauth2
repository: https://github.com/dart-lang/tools/tree/main/pkgs/oauth2

environment:
sdk: ^3.0.0
Expand Down

0 comments on commit 76c4e02

Please sign in to comment.