From 2184c03a28c30497334d6afa49556321111430a9 Mon Sep 17 00:00:00 2001 From: dnskr Date: Sat, 18 Oct 2025 15:43:11 +0200 Subject: [PATCH] [CI] Skip Python Client unit tests when only documentation changes are made Signed-off-by: dnskr --- .github/workflows/python.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index d0ea2356b33..cfa2943a6d6 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -22,10 +22,14 @@ on: branches: - master - branch-* + paths-ignore: + - 'docs/**' pull_request: branches: - master - branch-* + paths-ignore: + - 'docs/**' concurrency: group: python-${{ github.head_ref || github.run_id }}