From d09a9667498ac6663d7239bccc204a203acabf9a Mon Sep 17 00:00:00 2001 From: CodeShell <122738806+CodeShellDev@users.noreply.github.com> Date: Fri, 27 Mar 2026 22:04:41 +0100 Subject: [PATCH] ignore docs / non-source files for ci triggers This commit adds ignores for - markdown files - yml files - doc/ and subfolders - plugins/ and subfolders - .github/ and subfolders For both PR and pushes --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edf270b..0b2eb1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,22 @@ on: push: branches: - '**' #every branch + paths-ignore: + - "*/*.md" + - "*/*.yml" + - "doc/**" + - "plugins/**" + - ".github/**" pull_request: branches: - '**' #every branch + paths-ignore: + - "*/*.md" + - "*/*.yml" + - "doc/**" + - "plugins/**" + - ".github/**" + jobs: setup: