From 1ea868081a076bef877afff53e03b679828c4d54 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sat, 3 Jun 2023 09:43:08 -0400 Subject: [PATCH] [ci] Fix /format command (#5376) --- .github/workflows/comment-command.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/comment-command.yml b/.github/workflows/comment-command.yml index f58ed18744..1866b9b014 100644 --- a/.github/workflows/comment-command.yml +++ b/.github/workflows/comment-command.yml @@ -42,16 +42,10 @@ jobs: with: distribution: 'zulu' java-version: 11 - - name: Install clang-format - run: | - wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo sh -c "echo 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-14 main' >> /etc/apt/sources.list.d/proposed-repositories.list" - sudo apt-get update -q - sudo apt-get install -y clang-format-14 - name: Install wpiformat run: pip3 install wpiformat - name: Run wpiformat - run: wpiformat -clang 14 + run: wpiformat - name: Run spotlessApply run: ./gradlew spotlessApply - name: Commit