From e0d7214f46263f10a9121cfcaba875cf78f23156 Mon Sep 17 00:00:00 2001 From: notaroboticsenthusiast <91231142+notaroboticsenthusiast@users.noreply.github.com> Date: Thu, 26 Oct 2023 22:36:20 -0700 Subject: [PATCH] delete format action (again) --Gabe --- .github/workflows/format.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/format.yml diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml deleted file mode 100644 index e2e0838..0000000 --- a/.github/workflows/format.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Format with Google Style - -on: - schedule: - - cron: "4 21 * * *" # 9 am UTC is 3 am CST, which is our timezone - -permissions: - contents: write - -jobs: - formatting: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: axel-op/googlejavaformat-action@v3 - with: - args: "--replace" - github-token: ${{ secrets.GITHUB_TOKEN }}