From d1ab3cd9b0529c84272b8c9c40b8be26983b51d0 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Mar 2023 18:16:16 +0100 Subject: [PATCH] [CI] Removed uncrustify action until dubious ownership error is fixed --- .github/workflows/uncrustify.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/uncrustify.yml diff --git a/.github/workflows/uncrustify.yml b/.github/workflows/uncrustify.yml deleted file mode 100644 index 70a644c2..00000000 --- a/.github/workflows/uncrustify.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: "Uncrustify" - -on: - push: - branches: [master] - #pull_request: - # branches: [master] - -jobs: - uncrustify: - name: Uncrustify - runs-on: ubuntu-latest - env: - run-uncrust: ${{ contains(github.event.head_commit.message, 'Bump version to') || contains(github.event.head_commit.message, 'CI_FORCE_UNCRUST') || github.event_name == 'pull_request' }} - - steps: - - name: Checkout repository - if: ${{ env.run-uncrust == 'true' }} - uses: actions/checkout@v3 - - - name: Workaround for https://github.com/actions/runner-images/issues/6775 - run: git config --global --add safe.directory /github/workspace - - - name: Run style check - if: ${{ env.run-uncrust == 'true' }} - uses: coleaeason/actions-uncrustify@v1 - with: - configPath: 'uncrustify.cfg'