From a2c1c3546c149b9fea7433acbeedb0cdf2056525 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 23 Aug 2024 19:20:47 +0000 Subject: [PATCH] Limit which health checks run The `breaking` and `leaking` health checks are not currently compatible with repos using put 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