From ed50e0297e3e00ac1a2f835694638b41a85f5888 Mon Sep 17 00:00:00 2001 From: juri1212 Date: Mon, 13 Jul 2026 22:35:54 +0200 Subject: [PATCH] Skip CI for content-only changes - Ignore `content/**` on push and pull request events - Keep CI running for code and workflow changes --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc06dae..b3f99f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,13 @@ on: push: branches: - main + paths-ignore: + - 'content/**' pull_request: branches: - main + paths-ignore: + - 'content/**' workflow_dispatch: permissions: