Skip to content

Commit 16110e7

Browse files
authored
Exclude dependabots PRs from the CI runs (#13680)
* Exclude dependabots PRs from the CI runs * Exclude based on the PR opener
1 parent c86660a commit 16110e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: GeoNode Test Suites
33
on:
44
pull_request:
55
types: [opened, synchronize, reopened, ready_for_review]
6+
workflow_dispatch:
67

78
jobs:
89
# -------------------------------------------------
@@ -11,7 +12,7 @@ jobs:
1112
build_images:
1213
name: Build and export Docker images
1314
runs-on: ubuntu-24.04
14-
if: ${{ !github.event.pull_request.draft }}
15+
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && !github.event.pull_request.draft }}
1516

1617
steps:
1718
- name: Checkout repository

0 commit comments

Comments
 (0)