Skip to content

Commit

Permalink
πŸ’š (ci) [NO-ISSUE]: Allow some ref to skip dangercheck (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
valpinkman authored Apr 23, 2024
2 parents 56d96e9 + 05a8e79 commit 641f0ac
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]
Expand All @@ -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
Expand All @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 641f0ac

Please sign in to comment.