merge fixes
diff --git a/.github/labeler.yml b/.github/labeler.yml index eca80bb..9bca16c 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml
@@ -84,6 +84,10 @@ - changed-files: - any-glob-to-any-file: 'pkgs/source_map_stack_trace/**' +'package:stack_trace': + - changed-files: + - any-glob-to-any-file: 'pkgs/stack_trace/**' + 'package:unified_analytics': - changed-files: - any-glob-to-any-file: 'pkgs/unified_analytics/**'
diff --git a/pkgs/stack_trace/.github/workflows/test-package.yml b/.github/workflows/stack_trace.yaml similarity index 85% rename from pkgs/stack_trace/.github/workflows/test-package.yml rename to .github/workflows/stack_trace.yaml index 01fb647..7435967 100644 --- a/pkgs/stack_trace/.github/workflows/test-package.yml +++ b/.github/workflows/stack_trace.yaml
@@ -1,17 +1,28 @@ -name: Dart CI +name: package:stack_trace on: # Run on PRs and pushes to the default branch. push: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/stack_trace.yaml' + - 'pkgs/stack_trace/**' pull_request: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/stack_trace.yaml' + - 'pkgs/stack_trace/**' schedule: - cron: "0 0 * * 0" env: PUB_ENVIRONMENT: bot.github + +defaults: + run: + working-directory: pkgs/stack_trace/ + jobs: # Check code formatting and static analysis on a single OS (linux) # against Dart dev.
diff --git a/README.md b/README.md index 50517c3..e7d1e9e 100644 --- a/README.md +++ b/README.md
@@ -34,6 +34,7 @@ | [mime](pkgs/mime/) | Utilities for handling media (MIME) types, including determining a type from a file extension and file contents. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Amime) | [](https://pub.dev/packages/mime) | | [oauth2](pkgs/oauth2/) | 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. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aoauth2) | [](https://pub.dev/packages/oauth2) | | [source_map_stack_trace](pkgs/source_map_stack_trace/) | A package for applying source maps to stack traces. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_map_stack_trace) | [](https://pub.dev/packages/source_map_stack_trace) | +| [stack_trace](pkgs/stack_trace/) | A package for manipulating stack traces and printing them readably. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Astack_trace) | [](https://pub.dev/packages/stack_trace) | | [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [](https://pub.dev/packages/unified_analytics) | ## Publishing automation
diff --git a/pkgs/stack_trace/.github/dependabot.yml b/pkgs/stack_trace/.github/dependabot.yml deleted file mode 100644 index 7069269..0000000 --- a/pkgs/stack_trace/.github/dependabot.yml +++ /dev/null
@@ -1,15 +0,0 @@ -# Dependabot configuration file. -# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates - -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - labels: - - autosubmit - groups: - github-actions: - patterns: - - "*"
diff --git a/pkgs/stack_trace/.github/workflows/no-response.yml b/pkgs/stack_trace/.github/workflows/no-response.yml deleted file mode 100644 index ab1ac49..0000000 --- a/pkgs/stack_trace/.github/workflows/no-response.yml +++ /dev/null
@@ -1,37 +0,0 @@ -# A workflow to close issues where the author hasn't responded to a request for -# more information; see https://github.com/actions/stale. - -name: No Response - -# Run as a daily cron. -on: - schedule: - # Every day at 8am - - cron: '0 8 * * *' - -# All permissions not specified are set to 'none'. -permissions: - issues: write - pull-requests: write - -jobs: - no-response: - runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'dart-lang' }} - steps: - - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e - with: - # Don't automatically mark inactive issues+PRs as stale. - days-before-stale: -1 - # Close needs-info issues and PRs after 14 days of inactivity. - days-before-close: 14 - stale-issue-label: "needs-info" - close-issue-message: > - Without additional information we're not able to resolve this issue. - Feel free to add more info or respond to any questions above and we - can reopen the case. Thanks for your contribution! - stale-pr-label: "needs-info" - close-pr-message: > - Without additional information we're not able to resolve this PR. - Feel free to add more info or respond to any questions above. - Thanks for your contribution!
diff --git a/pkgs/stack_trace/CHANGELOG.md b/pkgs/stack_trace/CHANGELOG.md index 56aa7f6..e92cf9c 100644 --- a/pkgs/stack_trace/CHANGELOG.md +++ b/pkgs/stack_trace/CHANGELOG.md
@@ -1,3 +1,7 @@ +## 1.12.1 + +* Move to `dart-lang/tools` monorepo. + ## 1.12.0 * Added support for parsing Wasm frames of Chrome (V8), Firefox, Safari.
diff --git a/pkgs/stack_trace/README.md b/pkgs/stack_trace/README.md index 83bae61..b10a556 100644 --- a/pkgs/stack_trace/README.md +++ b/pkgs/stack_trace/README.md
@@ -1,4 +1,4 @@ -[](https://github.com/dart-lang/stack_trace/actions/workflows/test-package.yml) +[](https://github.com/dart-lang/tools/actions/workflows/stack_trace.yaml) [](https://pub.dev/packages/stack_trace) [](https://pub.dev/packages/stack_trace/publisher)
diff --git a/pkgs/stack_trace/pubspec.yaml b/pkgs/stack_trace/pubspec.yaml index 7e76f0b..4f387b1 100644 --- a/pkgs/stack_trace/pubspec.yaml +++ b/pkgs/stack_trace/pubspec.yaml
@@ -1,5 +1,5 @@ name: stack_trace -version: 1.12.0 +version: 1.12.1 description: A package for manipulating stack traces and printing them readably. repository: https://github.com/dart-lang/tools/tree/main/pkgs/stack_trace