Skip to content

Commit bbf26a1

Browse files
committed
Run tests only for PRs that are not Drafts
1 parent 52402e7 commit bbf26a1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: GeoNode Test Suites
22

3-
on: [push, workflow_dispatch]
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
6+
47

58
jobs:
69
build_images:
710
name: Build and export Docker images
811
runs-on: ubuntu-24.04
12+
if: ${{ !github.event.pull_request.draft }}
913

1014
steps:
1115
- name: Checkout repository

0 commit comments

Comments
 (0)