From 4e49941b394cda741ef9f25dffc2fe159cc8da58 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 7 Jun 2026 16:02:29 -0400 Subject: [PATCH] CI: Skip later CI on reformat Small chance a bug gets through, but this will avoid multiple runs on the common case of reformatting users' pull requests, and related run cancellation problems. --- .github/workflows/format.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index e027c7a04..eefc544a1 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -38,11 +38,11 @@ jobs: ./configure make venv source .venv/bin/activate - make -j 2 format CLANGFORMAT=clang-format-18 + make -j 4 format CLANGFORMAT=clang-format-18 git status - name: Push run: |- if [ -n "$(git status --porcelain)" ]; then - git commit . -m "Apply 'make format'" && + git commit . -m "Apply 'make format' [ci skip]" && git push origin fi