This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-3.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1d8aaa0d296e8d7b8a1b7f6af6c751816fc345f7 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Thu Oct 13 09:35:26 2022 +0200 (chores) ci: increase the number of maximum testable components Increases the number of testable components to 20. --- .github/actions/quick-test/quick-test.sh | 2 +- .github/workflows/component-pr.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/quick-test/quick-test.sh b/.github/actions/quick-test/quick-test.sh index 36816cab505..0e0ad4fbdf4 100755 --- a/.github/actions/quick-test/quick-test.sh +++ b/.github/actions/quick-test/quick-test.sh @@ -27,7 +27,7 @@ MVN_OPTS=${MVN_OPTS:-$MVN_DEFAULT_OPTS} # Script variables failures=0 -maxNumberOfTestableComponents=15 +maxNumberOfTestableComponents=20 basedir=$(pwd) testDate=$(date '+%Y-%m-%d-%H%M%S') logDir=${basedir}/automated-build-log diff --git a/.github/workflows/component-pr.yaml b/.github/workflows/component-pr.yaml index 6ff7614e76a..c41f5437f41 100644 --- a/.github/workflows/component-pr.yaml +++ b/.github/workflows/component-pr.yaml @@ -95,7 +95,7 @@ jobs: if (total === 0) { message = ":no_entry_sign: There are (likely) no components to be tested in this PR" } else { - if (total > 10) { + if (total > 20) { message = `There are too many components to be tested in this PR, components were removed or the code needs a rebase: (${total} likely to be tested)` } }
