Daco Harkes
Daco Harkes
The simple coverage setup from https://github.com/dart-lang/tools/pull/42 seems to not show up on https://coveralls.io/github/dart-lang/tools. Either it's misconfigured, or we need to approve it somewhere. Also, we need to configure it that...
Currently the health bot package publish validation omits packages that have `publish_to: none` in their pubspec. Maybe we should consider listing them? (E.g. we were confused by why the packages...
The health workflow does not add the same info as the auto-publishing comments Auto publish workflow: Health workflow: If the health workflow would add the publishing tags, we could disable...
The GitHub API crashes every once in a while, and then `transfer-issues` doesn't apply the labels afterwards. It's probably safer to do it per issue.
```gql query { repository(owner:"${slug.owner}", name:"${slug.name}") { issues(last:100, states:OPEN) { nodes { id number } } } } ```
The SDK version can be specified for the firehose invocation: https://github.com/dart-lang/ecosystem/tree/main/pkgs/firehose#publishing-from-a-specific-version-of-the-sdk However, this doesn't work very well with mono repos, one might have a single package that tracks a dev...
The publisher can be configured to use a different channel as a repo-wide setting: https://github.com/dart-lang/ecosystem/blob/main/.github/workflows/publish.yaml#L60-L67 This has multiple downsides: * It doesn't enable different packages in a mono-repo to target...
The `dart analyze` step fails because `pub get` is not run in any subfolders. ``` * `dart analyze` found the following issue(s): Analyzing lib, test, pubspec.yaml... error - test/data/dart_app/bin/dart_app.dart:5:8 -...
Hi @csnewman! Cool to see that we have an effort for making Dart and Go work together! I have preregistered `package:native_toolchain_go`. If you will actively maintain this package, I'm happy...
After https://github.com/dart-lang/sdk/commit/8e00ebc689354ee99d6a7fda844ade8f3701f140 the following code started failing: https://github.com/dart-lang/sdk/blob/a8314dac745ceabc926f9d9bedb9e8692d690298/pkg/dartdev/lib/src/commands/build.dart#L70 `sdk.dart` was recently changed: from `Platform.resolvedExecutable` to `Platform.executable`. Why was it changed @bkonyi? The error only shows up when downloading a dev...