diff --git a/.github/workflows/pr-auto-fix.yaml b/.github/workflows/pr-auto-fix.yaml index 5838201e122..b045629492e 100644 --- a/.github/workflows/pr-auto-fix.yaml +++ b/.github/workflows/pr-auto-fix.yaml @@ -4,6 +4,14 @@ jobs: PRAutoFix: runs-on: ubuntu-latest steps: + # Cache bazel build + - name: Cache bazel + uses: actions/cache@v2 + env: + cache-name: bazel-cache + with: + path: ~/.cache/bazel + key: ${{ runner.os }}-${{ env.cache-name }} # Cancel current runs if they're still running # (saves processing on fast pushes) - name: Cancel Previous Runs