Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ’š (ci) [NO-ISSUE]: Allow some ref to skip dangercheck #64

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading