This is an automated email from the ASF dual-hosted git repository.
gnodet 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 48e5e75bd9b1 ci: temporarily disable Dependency Analysis workflow
(CAMEL-24985) (#26834)
48e5e75bd9b1 is described below
commit 48e5e75bd9b10af3c9f8e76494b048e91f9897cd
Author: Guillaume Nodet <[email protected]>
AuthorDate: Thu Sep 24 12:01:08 2026 +0200
ci: temporarily disable Dependency Analysis workflow (CAMEL-24985) (#26834)
pilot:dependencies produces false positives on SNAPSHOT build plugins
(camel-yaml-dsl-validator-maven-plugin etc.), causing spurious red
marks on PR checks even though the job is non-blocking.
Disable with 'if: false' until the upstream pilot issues are fixed.
See: https://issues.apache.org/jira/browse/CAMEL-24985
---
.github/workflows/dep-check.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/dep-check.yml b/.github/workflows/dep-check.yml
index ced52b8819ad..302a7e1b4c09 100644
--- a/.github/workflows/dep-check.yml
+++ b/.github/workflows/dep-check.yml
@@ -42,7 +42,10 @@ permissions:
jobs:
dep-check:
- if: github.repository == 'apache/camel'
+ # Temporarily disabled — pilot:dependencies produces false positives on
SNAPSHOT build plugins
+ # (camel-yaml-dsl-validator-maven-plugin etc.) causing spurious red marks
on PR checks.
+ # Re-enable once the upstream pilot issues are fixed. See: CAMEL-24985
+ if: false
name: Dependency Analysis (non-blocking)
runs-on: ubuntu-latest
continue-on-error: true