diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/maven.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 546d4286b..3b2bdf199 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -12,11 +12,17 @@ on: jobs: build: - runs-on: ubuntu-latest + # No automatic builds for Dependabot PRs + # Caveat: cannot start 'if:' expression with '!', hence '!= true' + if: startsWith(github.actor, 'dependabot') != true + strategy: fail-fast: false matrix: java: [ 11, 14, 17 ] + + runs-on: ubuntu-latest + steps: - uses: actions/checkout@v2 |