From c3ee238ae70ce226baadabe9a7fb91b03b1e9a1e Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 31 Jul 2025 13:57:52 -0700 Subject: [PATCH] Add format to update baselines/fix lints task (#62160) --- .github/workflows/accept-baselines-fix-lints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/accept-baselines-fix-lints.yaml b/.github/workflows/accept-baselines-fix-lints.yaml index f6b51d1d51c..9c48d9d689b 100644 --- a/.github/workflows/accept-baselines-fix-lints.yaml +++ b/.github/workflows/accept-baselines-fix-lints.yaml @@ -1,4 +1,4 @@ -name: Accept Baselines and Fix Lints +name: Accept Baselines, Fix Lints, and Format on: workflow_dispatch: {} @@ -32,8 +32,9 @@ jobs: git rm -r --quiet tests/baselines/reference npx hereby runtests-parallel --ci --fix || true npx hereby baseline-accept + npx hereby format git add ./src git add ./tests/baselines/reference git diff --cached - git commit -m "Update Baselines and/or Applied Lint Fixes" + git commit -m "Update Baselines, Applied Lint Fixes, and/or Formatted" git push