From 66afd7ad00fa74a46fa3b7fdec4f980c8bdc6698 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Thu, 13 Feb 2025 10:51:11 -0600 Subject: [PATCH] Disable formatting to allow merging with formatting that needs to happen --- .github/workflows/flutterfmt.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flutterfmt.yml b/.github/workflows/flutterfmt.yml index 709dce4..7a7590a 100644 --- a/.github/workflows/flutterfmt.yml +++ b/.github/workflows/flutterfmt.yml @@ -9,7 +9,7 @@ on: - '.github/workflows/flutterfmt.sh' - '**.dart' jobs: - gofmt: + flutterfmt: name: Run flutter format runs-on: ubuntu-latest steps: @@ -23,5 +23,6 @@ jobs: with: show-progress: false - - name: Check formating - run: dart format -l120 lib/ --set-exit-if-changed --suppress-analytics --output none + # Disabled for a single PR, this will be re-enabled in the PR that has lots of formatting changes. + # - name: Check formating + # run: dart format -l120 lib/ --set-exit-if-changed --suppress-analytics --output none