From 97e2d3432510290ecc18fa85c831e964bf268c05 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 17 Sep 2026 15:27:39 +0000 Subject: [PATCH] Make advisory lint step non-blocking without failing job Co-authored-by: i12bp8 <57963363+i12bp8@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4b50b7..4ac7b84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -268,19 +268,19 @@ jobs: # column-aligned macros/struct fields that clang-format rejects, and lint # walks the whole repo (flagging the hyphenated cloud-plugins/, esp32-wifi-fw/ # and web-image-prep/ folders). The action exits non-zero on any violation, - # so the job is marked continue-on-error and only surfaces its findings in + # so the lint step is marked continue-on-error and only surfaces findings in # the job summary. Do NOT "fix" this with `ufbt format` - that would also # rewrite the ESP32 C sources. lint: name: Lint (advisory, non-blocking) runs-on: ubuntu-latest timeout-minutes: 20 - continue-on-error: true steps: - name: Checkout uses: actions/checkout@v7 - name: ufbt lint (clang-format check) + continue-on-error: true uses: flipperdevices/flipperzero-ufbt-action@v0.1 with: app-dir: .