We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4472053 + 0ff1719 commit e816e43Copy full SHA for e816e43
.github/workflows/tests.yml
@@ -3,6 +3,7 @@ name: GeoNode Test Suites
3
on:
4
pull_request:
5
types: [opened, synchronize, reopened, ready_for_review]
6
+ workflow_dispatch:
7
8
jobs:
9
# -------------------------------------------------
@@ -11,7 +12,7 @@ jobs:
11
12
build_images:
13
name: Build and export Docker images
14
runs-on: ubuntu-24.04
- if: ${{ !github.event.pull_request.draft }}
15
+ if: ${{ github.actor != 'dependabot[bot]' && !github.event.pull_request.draft }}
16
17
steps:
18
- name: Checkout repository
0 commit comments