From 8f809424b8fbd397b0168db081d098a3923d6b0e Mon Sep 17 00:00:00 2001 From: "Ch.-David Blot" Date: Tue, 27 Jan 2026 10:30:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci:=20test=20dependency=20on=20r?= =?UTF-8?q?ichard=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull-request.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index b4b40135..5a3fe8d9 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -27,7 +27,9 @@ jobs: cache: 'maven' - name: Local Tests run: ./local_tests.sh + - name: Example tests + if: "! contains(github.event.pull_request.labels.*.name, 'dependencies')" env: OSC_ACCESS_KEY: ${{ secrets.OSC_ACCESS_KEY }} OSC_SECRET_KEY: ${{ secrets.OSC_SECRET_KEY }} @@ -35,18 +37,3 @@ jobs: OSC_USERNAME: ${{ secrets.OSC_USERNAME }} OSC_PASSWORD: ${{ secrets.OSC_PASSWORD }} run: make examples-test - dependabot-auto-merge: - needs: [reuse-test, examples-test] - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - name: Dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Auto-merge - run: gh pr merge --auto --rebase "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}