From a722a302cffa67ddb536e9be590b4a160985415c Mon Sep 17 00:00:00 2001 From: Daniel Widgren Date: Sun, 10 May 2026 14:20:05 +0200 Subject: [PATCH] ci: skip CI/Release workflows on docs-only changes --- .github/workflows/ci.yml | 8 ++++++++ .github/workflows/release.yml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d90d578..32e3d25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,16 @@ name: CI on: push: branches: [main] + paths-ignore: + - '**.md' + - 'LICENSE' + - '.gitignore' pull_request: branches: [main] + paths-ignore: + - '**.md' + - 'LICENSE' + - '.gitignore' jobs: ci: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index daf62f3..f97991b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,10 @@ name: Release on: push: branches: [main] + paths-ignore: + - '**.md' + - 'LICENSE' + - '.gitignore' jobs: release: