From 70fed8148d2d7199ddd3cfdba783c05a153ef412 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Mon, 5 May 2025 11:57:02 +0300 Subject: [PATCH] [ci] Run pre-commit checks even on doc changes Pre-commit is now required to merge PRs, so let it run even on documentation updates. An alternative is to merge with administrator permissions, bypassing rules, which is not a good practice. Signed-off-by: Nick Volynkin --- .github/workflows/pre-commit.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8556c2bd..65c48051 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -3,8 +3,6 @@ name: Pre-Commit Checks on: pull_request: types: [labeled, opened, synchronize, reopened] - paths-ignore: - - '**.md' concurrency: group: pre-commit-${{ github.workflow }}-${{ github.event.pull_request.number }}