Skip to content

Commit 85587e5

Browse files
committed
Don't run tests when it's dependabot
Dependabot currently is used only for GitHub actions
1 parent a14f2f9 commit 85587e5

4 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
links:
2525
name: Check Links
2626
runs-on: ubuntu-latest
27+
if: github.actor != 'dependabot[bot]'
2728

2829
steps:
2930
- name: Checkout repository

.github/workflows/emulator-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
emulator-tests:
2121
name: Emulator Tests
2222
runs-on: ubuntu-latest
23+
if: github.actor != 'dependabot[bot]'
2324

2425
env:
2526
php-version: '8.3'

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
integration-tests:
2121
name: Integration Tests
2222
runs-on: ubuntu-latest
23+
if: github.actor != 'dependabot[bot]'
2324

2425
env:
2526
php-version: '8.3'

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
tests:
2121
name: "PHP ${{ matrix.php }}, ${{ matrix.dependencies }} deps"
2222
runs-on: ubuntu-latest
23+
if: github.actor != 'dependabot[bot]'
2324

2425
strategy:
2526
matrix:
@@ -92,6 +93,8 @@ jobs:
9293
bc-checks:
9394
name: Backward Compatibility Check
9495
runs-on: ubuntu-latest
96+
if: github.actor != 'dependabot[bot]'
97+
9598
steps:
9699
- uses: actions/checkout@v4
97100
with:

0 commit comments

Comments
 (0)