From 007375371e11b43d847cdf153c7590849d34755f Mon Sep 17 00:00:00 2001 From: dom Date: Thu, 12 Feb 2026 16:04:01 +0800 Subject: [PATCH] revert new overscrollindicator Signed-off-by: dom --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d45ac6fe4..08fcbeae0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,6 +78,18 @@ jobs: flutter-version-file: pubspec.yaml cache: true + - name: revert new overscrollindicator + working-directory: ${{ env.FLUTTER_ROOT }} + # https://github.com/flutter/flutter/issues/182281 + run: | + git config --global user.name "ci" + git config --global user.email "example@example.com" + git stash || true + git revert 362b1de29974ffc1ed6faa826e1df870d7bec75f --no-edit + git reset --soft HEAD~1 + git stash pop || true + continue-on-error: true + - name: apply bottom sheet patch working-directory: ${{ env.FLUTTER_ROOT }} run: git apply $GITHUB_WORKSPACE/lib/scripts/bottom_sheet_patch.diff