From 05a8e7916801529ec9b0434f911dea58cc7d08d9 Mon Sep 17 00:00:00 2001 From: "Valentin D. Pinkman" Date: Wed, 17 Apr 2024 18:18:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20(ci):=20Allow=20some=20ref=20to?= =?UTF-8?q?=20skip=20dangercheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull_request.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 54f90bb1d..3c17ebefc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,4 +1,4 @@ -name: pull_request +name: Pull Request on: pull_request: types: [opened, synchronize, reopened, edited] @@ -18,7 +18,8 @@ jobs: - uses: toshimaru/auto-author-assign@v2.1.0 danger: - name: Pass Danger check + name: Run Danger check + if: ${{ !contains(github.ref_name, 'dependabot') }} runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v4 @@ -34,7 +35,7 @@ jobs: run: ./.github/actions/danger-check.sh health-check: - name: Pass health check + name: Run health check needs: [danger] runs-on: [device-sdk-4xlarge-linux] steps: @@ -46,7 +47,7 @@ jobs: run: pnpm health-check unit-tests: - name: Launch unit tests + name: Run unit tests needs: [danger] runs-on: [device-sdk-4xlarge-linux] steps: