Skip to content

Commit

Permalink
💚 (ci): Allow some ref to skip dangercheck
Browse files Browse the repository at this point in the history
valpinkman committed Apr 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent aed7540 commit 05a8e79
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]

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:

0 comments on commit 05a8e79

Please sign in to comment.