From 655dfcf3a25270c1d8cd9767596bd42cee9c9d01 Mon Sep 17 00:00:00 2001 From: Martin Georgiev Date: Fri, 28 Mar 2025 18:10:02 +0000 Subject: [PATCH] ci: do not run `CI` workflow if the changes are related only to documentation or GitHub Actions configuration --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d97da2b..16e99045 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,16 @@ name: CI on: - push: - branches: [ "main" ] pull_request: branches: [ "main" ] + paths-ignore: + - '.github/**' + - '**/*.md' + push: + branches: [ "main" ] + paths-ignore: + - '.github/**' + - '**/*.md' permissions: contents: read