From 30fb6858d16ed488e6e5eed2ee38700782261d61 Mon Sep 17 00:00:00 2001 From: Jake Van Vorhis <83739412+jakedoublev@users.noreply.github.com> Date: Wed, 29 May 2024 06:59:02 -0700 Subject: [PATCH] fix(ci): ignore auto-formatting of proto-generated files (#296) --- .github/workflows/format.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index f5a97c7e..a01a0616 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -14,6 +14,8 @@ jobs: - run: make format - name: ignore package-lock changes run: git restore "*/package-lock.json" + - name: ignore proto-generated file changes + run: git restore "lib/src/platform" - run: git diff - run: git diff-files --ignore-submodules - name: Check that files have been formatted before PR submission