From d0131b06c2d9afaf59d36cd6610f8d1d087e0d87 Mon Sep 17 00:00:00 2001 From: openhands Date: Thu, 19 Mar 2026 06:33:20 +0000 Subject: [PATCH] ci: exclude formulas/ and evidence/ from build and e2e pipelines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These directories contain TOML process definitions and JSON evidence files — no code changes that need testing. Also excludes docs/ and *.md from the main CI pipeline (e2e already excluded these). Prepares for formula and evidence PRs landing without triggering unnecessary CI runs. --- .woodpecker/ci.yml | 6 ++++++ .woodpecker/e2e.yml | 2 ++ 2 files changed, 8 insertions(+) diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml index eb06774..ebd1ac1 100644 --- a/.woodpecker/ci.yml +++ b/.woodpecker/ci.yml @@ -4,6 +4,12 @@ name: build-and-test when: event: pull_request + path: + exclude: + - "formulas/**" + - "evidence/**" + - "docs/**" + - "*.md" clone: git: diff --git a/.woodpecker/e2e.yml b/.woodpecker/e2e.yml index 52d9127..9e1489f 100644 --- a/.woodpecker/e2e.yml +++ b/.woodpecker/e2e.yml @@ -12,6 +12,8 @@ when: - "tools/**" - "onchain/test/FitnessEvaluator*" - "docs/**" + - "formulas/**" + - "evidence/**" - ".codeberg/**" - "*.md"