From e60274b29c0a748df2c6280d0a374e6eef3b6c73 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 9 Jun 2026 15:51:06 +0200 Subject: [PATCH] Run lint workflow on all PRs to fix stuck required checks The lint workflow was path-filtered to source files, so PRs that didn't touch them never ran clang-format/cmake-format. Since those checks are required, such PRs were blocked forever waiting for a status that never came. Drop the paths filter so the workflow always reports a status. --- .github/workflows/lint.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cbb1bdc4..a00a5273 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,11 +2,6 @@ name: lint on: pull_request: - paths: - - '**.h' - - '**.cc' - - '**.cmake' - - '**/CMakeLists.txt' permissions: contents: read