We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86660a commit 16110e7Copy full SHA for 16110e7
.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.event.pull_request.user.login != 'dependabot[bot]' && !github.event.pull_request.draft }}
16
17
steps:
18
- name: Checkout repository
0 commit comments