Open
Conversation
Merge the three separate CI actions (detect-dependencies, component-test, incremental-build) into a single incremental-build action and streamline the workflow files: - Merge POM dependency detection (from detect-dependencies) and /component-test logic into incremental-build.sh - Rationalize pr-build-main.yml to support both PR builds and workflow_dispatch with extra_modules and skip_full_build inputs - Replace pr-manual-component-test.yml with a lightweight dispatcher that resolves component names and dispatches pr-build-main.yml - Add pr-test-commenter.yml (workflow_run) to post unified test summary comments on PRs (including fork PRs) - Generate a single unified PR comment combining file-path analysis, POM dependency detection, and /component-test results - Add CI-ARCHITECTURE.md documenting the workflow ecosystem - Revert apache#22022 (detect-dependencies action) since its functionality is now integrated into incremental-build - Delete obsolete actions: detect-dependencies, component-test Bug fixes found during CI testing: - Fix pipefail issue in dependent module count (set -o pipefail caused mvn|wc||echo to produce multi-line output) - Use ${{ github.repository }} instead of hardcoded 'apache/camel' in action.yaml default for github-repo input - Only append module exclusion list when using -amd flag (exclusion modules must be in the reactor to be excluded) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…dules - Add blank line before ### heading so GitHub renders it as H3 - Include extra_modules in dependent count threshold check so the count reflects what Maven will actually build with -amd Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
When changed modules have associated integration tests that are excluded from CI (e.g. camel-jbang-core → camel-jbang-it), post a PR comment advising the contributor to run them manually. The mapping is maintained in manual-it-mapping.txt, co-located with the incremental build script. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…build-detect-dependencies # Conflicts: # .github/workflows/pr-manual-component-test.yml
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19a2d98 to
ea3b165
Compare
ea3b165 to
eab905c
Compare
${#array[@]} on an empty declared associative array triggers
'unbound variable' under set -u in some bash versions. Use a
simple flag variable instead.
eab905c to
7312913
Compare
Maven reactor output includes both "Camel :: Foo" and "Camel :: Foo [jar]" lines. Strip the [packaging] suffix before deduplication.
7312913 to
8867b30
Compare
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🐫 Apache Camel Committers, please review the following items:
|
|
🧪 CI tested the following changed modules:
✅ POM dependency changes: targeted tests included Changed properties: commons-lang3-version Modules affected by dependency changes (2)
All tested modules (3 modules)
|
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Test PR for apache#22247 — exercises POM dependency detection.
Change:
commons-lang3-version3.20.0 → 3.19.0 inparent/pom.xml.Expected: CI detects modules referencing
commons-lang3-versionproperty.