This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 704a50bd4cf3 exclude internal pom.xml from archetype
704a50bd4cf3 is described below
commit 704a50bd4cf39796a399952d2a8c3ad2a6ab2e00
Author: Marco Carletti <[email protected]>
AuthorDate: Thu Feb 26 10:18:35 2026 +0100
exclude internal pom.xml from archetype
---
.github/actions/incremental-build/incremental-build.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/actions/incremental-build/incremental-build.sh
b/.github/actions/incremental-build/incremental-build.sh
index 6cef654a1ca1..f96a19ce5796 100755
--- a/.github/actions/incremental-build/incremental-build.sh
+++ b/.github/actions/incremental-build/incremental-build.sh
@@ -62,7 +62,9 @@ function main() {
local totalAffected=0
for project in ${projects}
do
- if [[ ${project} != .* ]] ; then
+ if [[ ${project} == */archetype-resources ]] ; then
+ continue
+ elif [[ ${project} != .* ]] ; then
local projectRoot
projectRoot=$(findProjectRoot ${project})
if [[ ${projectRoot} = "." ]] ; then