Brandon Trautmann

Results 133 comments of Brandon Trautmann

@bkonyi can you LMK if this fell through the cracks? This is a pretty annoying bug to run into, particularly in cases like self-hosted github actions runners where state is...

> Yeah - this is a bug. We are using snapshots, but we don't get to invalidate them (as dart run does). Just curious: This at one point _did_ work...

Ironically I ran into this while repro'ing another [bug](https://github.com/dart-lang/pub/issues/4536)... Any idea when this might be able to be picked up?

FWIW, here is an example of tooling I'm used to (`dart analyze`) that follows the convention I'm suggesting: ``` # analysis_options.yaml include: ../analysis_options.yaml analyzer: errors: invalid_annotation_target: ignore ``` In this...

> Hello Brandon, > > Thanks for the report. > > Indeed there are similar issues about relative paths but for `ignore-from-file`, and an ongoing pull request at [#701](https://github.com/adrienverge/yamllint/pull/701). >...

I'm not sure why _some_ test jobs are failing, the stack doesn't _seem_ related to my changes? ```console /Users/distiller/.rbenv/versions/3.2.2/lib/ruby/site_ruby/3.2.0/rubygems.rb:319:in `load': cannot load such file -- /Users/distiller/.rbenv/versions/3.2.2/lib/ruby/gems/3.2.0/gems/bundler-2.3.21/lib/gems/bundler-2.3.21/exe/bundle (LoadError) from /Users/distiller/.rbenv/versions/3.2.2/lib/ruby/site_ruby/3.2.0/rubygems.rb:319:in `activate_and_load_bin_path'...

If it helps at all with review, we've been using these APIs with great success to automate our internal beta testers ever since I opened this PR! Would love to...

After doing some [research](https://github.com/gradle/actions/issues/363), it may be worthwhile for me to look into whether the queue is even getting cache hits. If they're not (which it sound like maybe they're...

OK, I just looked at one of our jobs and DO see cache hits of the Flutter SDK, so I think this issue is still relevant. ```console Cache restored successfully...

> GitHub Action cache by design is per branch, and cache enabled for any PR branch is also by design, so that if a user push multiple times to the...