Skip to content

Commit

Permalink
fix ci output
Browse files Browse the repository at this point in the history
Signed-off-by: Pranav Gaikwad <pgaikwad@redhat.com>
  • Loading branch information
pranavgaikwad committed Jan 24, 2024
1 parent ede3b30 commit 10fa290
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/global-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ jobs:
#!/bin/bash
rc=0
for file in $(find . -type f -name *.yaml); do
yq eval '.' "$file" > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "bad yaml file $file"
rc=1
fi
yq eval '.' "$file" > /dev/null 2>&1 || {
echo "::warning:: bad yaml file ${file}"
rc=1
}
done
exit $rc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- name: SupportClass
nameOfCaptureGroup: SupportClass
pattern: org.apache.camel.impl.(?P<SupportClass>(BaseSelectorProducer|AsyncCallbackToCompletableFutureAdapter|BridgeExceptionHandlerToErrorHandler|DefaultAsyncProducer|DefaultComponent|DefaultConsumer|DefaultEndpoint|DefaultExchange|DefaultExchangeHolder|DefaultHeaderFilterStrategy|DefaultMessage|DefaultMessageHistory|DefaultPollingConsumerPollStrategy|DefaultPollingEndpoint|DefaultProducer|DefaultScheduledPollConsumer|DefaultScheduledPollConsumerScheduler|DefaultThreadPoolFactory|EventDrivenPollingConsumer|ExpressionAdapter|ExpressionComparator|ExpressionListComparator|ExpressionSupport|HeaderFilterStrategyComponent|HeaderSelectorProducer|LoggingExceptionHandler|MessageSupport|PollingConsumerSupport|ProcessorEndpoint|ProcessorPollingConsumer|ScheduledBatchPollingConsumer|ScheduledPollConsumer|ScheduledPollEndpoint|SimpleRegistry|SimpleUuidGeneratorSynchronizationAdapter|SynchronousDelegateProducer))
description: 'Classes in `org.apache.camel.impl` have been relocated to `org.apache.camel.support`.'
description: 'Classes 'in `org.apache.camel.impl` have been relocated to `org.apache.camel.support`.'
effort: 3
labels:
- konveyor.io/source=camel2
Expand Down

0 comments on commit 10fa290

Please sign in to comment.