From 2500a301864b4a4691cc55514c7aaaaf0130cf44 Mon Sep 17 00:00:00 2001 From: Sophie Date: Tue, 30 Dec 2025 10:24:06 +0100 Subject: [PATCH] ci: Add GitHub Actions paths filter configuration Adds missing .github/paths-filter.yml configuration file required by PR check workflow. Registers all addon paths including portainer_agent for automated build testing on pull requests. This allows GitHub Actions to properly detect which addons have changed and trigger appropriate validation checks. --- .github/paths-filter.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/paths-filter.yml diff --git a/.github/paths-filter.yml b/.github/paths-filter.yml new file mode 100644 index 000000000..749225bf4 --- /dev/null +++ b/.github/paths-filter.yml @@ -0,0 +1,12 @@ +# GitHub Actions Path Filter Configuration +# Maps addon directory names to workflow labels +# Used by PR check workflow to detect which addons changed + +# Existing addons (sample - add all from repo): +portainer: &portainer + - added|modified: "portainer/**" + +portainer_agent: &portainer_agent + - added|modified: "portainer_agent/**" + +# Add more addon labels as needed following the pattern above