From 4b0d263e955b8da9ac1284d25f3ba007e376aff9 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 3 Jun 2024 11:44:14 -0400 Subject: [PATCH] ENH: Remove Clang Format Linter Action This never worked from fork PR pull requests due to GitHub permission limitations. While it may be possible to fix this with recently added GitHub Action permission features, a future replacement is planned based on the `pre-commit` hooks, #4235 and related. --- .github/workflows/clang-format-linter.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/clang-format-linter.yml diff --git a/.github/workflows/clang-format-linter.yml b/.github/workflows/clang-format-linter.yml deleted file mode 100644 index 9cf9c6cb463..00000000000 --- a/.github/workflows/clang-format-linter.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: clang-format linter - -on: [push,pull_request] - -permissions: - contents: read - -jobs: - lint: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master - with: - error-message: 'Code is inconsistent with ITK Coding Style. Add the *action:ApplyClangFormat* PR label to correct.'