This is an automated email from the ASF dual-hosted git repository. adoroszlai pushed a commit to branch dependabot-HDDS-9682 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit 0c463a61d271b27d114098bda1ad45e1b74a0e58 Author: Doroszlai, Attila <[email protected]> AuthorDate: Mon Nov 13 18:38:11 2023 +0100 HDDS-9682. Skip coverage check for dependabot --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 617d1c9e3d..d225d75d43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ on: env: FAIL_FAST: ${{ github.event_name == 'pull_request' }} MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 - OZONE_WITH_COVERAGE: ${{ github.repository == 'apache/ozone' && github.event_name != 'pull_request' }} + OZONE_WITH_COVERAGE: ${{ github.repository == 'apache/ozone' && github.event_name != 'pull_request' && !startsWith(github.ref_name, 'dependabot') }} jobs: build-info: runs-on: ubuntu-20.04 @@ -474,7 +474,7 @@ jobs: coverage: runs-on: ubuntu-20.04 timeout-minutes: 30 - if: github.repository == 'apache/ozone' && github.event_name != 'pull_request' + if: github.repository == 'apache/ozone' && github.event_name != 'pull_request' && !startsWith(github.ref_name, 'dependabot') needs: - unit - acceptance --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
