This is an automated email from the ASF dual-hosted git repository.

rotty3000 pushed a commit to branch rotty3000-patch-1
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git

commit 03cc757e9b94b15104de6b708a2493488286a63e
Author: Raymond AugĂ© <[email protected]>
AuthorDate: Wed Dec 16 14:35:52 2020 -0500

    only build for dependabot PRs not branches
    
    Signed-Off-By: [email protected]
---
 .github/workflows/maven.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index a03155b..64331a5 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -12,7 +12,13 @@
 
 name: CI Build
 
-on: [push, pull_request]
+on:
+  push:
+    # Sequence of patterns matched against refs/heads
+    branches-ignore:
+      # Push events to branches matching refs/heads/dependabot/**
+      - 'dependabot/**'
+  pull_request:
 
 env:
   LC_ALL: en_US.UTF-8

Reply via email to