From 40e50ec5157d9e5e34cae5af7676732338634cd2 Mon Sep 17 00:00:00 2001 From: Webster Sheets Date: Sat, 3 Feb 2024 21:19:10 -0500 Subject: [PATCH] Disable clang-format check - Clang Format is irreparably broken and cannot be commanded to stop aligning function arguments with the opening parenthesis of the function call. - As a result, disable the clang-format check for all pull requests indefinitely. --- .github/workflows/clang-format.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 4c988ad10c6..3c1284476a8 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -7,8 +7,11 @@ name: Clang Format on: pull_request: paths: - - 'src/**.cpp' - - 'src/**.h' + #- 'src/**.cpp' + #- 'src/**.h' + # Disable clang-format workflow until it will obey its own config and + # stop aligning function parameters with the opening parenthesis + .clang-format concurrency: group: ${{ github.workflow }}-${{ github.ref }}-format