From 90481cf848c1adf67af2f40807c2d43c9b51afe7 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 23 Aug 2024 15:04:23 -0700 Subject: [PATCH] Limit which health checks run (#2270) The `breaking` and `leaking` health checks are not currently compatible with repos using pub workspaces. The `coverage` health check is too slow to be worth using in this repo. Run only `version`, `changelog`, and `do-not-submit` checks. --- .github/workflows/health.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/health.yaml b/.github/workflows/health.yaml index 36b39b865..1656c1604 100644 --- a/.github/workflows/health.yaml +++ b/.github/workflows/health.yaml @@ -6,5 +6,7 @@ on: jobs: health: uses: dart-lang/ecosystem/.github/workflows/health.yaml@main + with: + checks: "version,changelog,do-not-submit" permissions: pull-requests: write