From 9405b48526f55f4874781d4d7543177a8454b350 Mon Sep 17 00:00:00 2001 From: Wilson Freitas Date: Sun, 22 Mar 2026 09:41:49 -0300 Subject: [PATCH] Add path filtering to build workflow Restrict workflow dispatch to only run on changes to: - README.md - parse.py - site/ directory This prevents unnecessary action runs when other files change. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81c0139..c10928f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,10 @@ on: - cron: "0 1 * * *" push: branches: [ master ] + paths: + - 'README.md' + - 'parse.py' + - 'site/**' concurrency: group: build-and-deploy