From 5a129e14ecbd3858296503b31d77b1af02de4b52 Mon Sep 17 00:00:00 2001 From: solomonneas Date: Wed, 1 Jul 2026 21:33:16 -0400 Subject: [PATCH] ci: skip CI on docs-only changes to save Actions minutes --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9a131e..bdf00ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,17 @@ name: CI on: pull_request: + paths-ignore: + - 'docs/**' + - '*.md' + - 'LICENSE' + - '.gitignore' push: + paths-ignore: + - 'docs/**' + - '*.md' + - 'LICENSE' + - '.gitignore' branches: [main] tags: ["v*.*.*"]