diff --git a/.github/workflows/clang-diff-format.yml b/.github/workflows/clang-diff-format.yml deleted file mode 100644 index f59967c22c82..000000000000 --- a/.github/workflows/clang-diff-format.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Clang Diff Format Check - -on: - pull_request: - branches: - - develop -jobs: - ClangFormat: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Fetch git - run: git fetch - - name: Run Clang-Format-Diff.py - run: | - git diff -U0 origin/develop -- . ':(exclude)src/qt/dashstrings.cpp' ':(exclude)src/qt/locale/' | ./contrib/devtools/clang-format-diff.py -p1 > diff_output.txt - if [ -s diff_output.txt ]; then - echo "Clang format differences found:" - cat diff_output.txt - exit 1 - else - echo "No Clang format differences found." - fi