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

jongyoul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 9095d9b823 [MINOR] Specify branch names for Github action (#4529)
9095d9b823 is described below

commit 9095d9b823d877ab9ef37e0052cea614f73b2afd
Author: Jongyoul Lee <jongy...@gmail.com>
AuthorDate: Tue Jan 10 13:34:24 2023 +0900

    [MINOR] Specify branch names for Github action (#4529)
    
    * [MINOR] Specify branch names for Github action
    
    * [MINOR] Specify branch names for Github action
    
    * [MINOR] Ignore depdendabot's push triggering Github Actions
---
 .github/workflows/core.yml     | 4 +++-
 .github/workflows/frontend.yml | 4 +++-
 .github/workflows/quick.yml    | 4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml
index 60a0e0e064..e2181928d0 100644
--- a/.github/workflows/core.yml
+++ b/.github/workflows/core.yml
@@ -1,11 +1,13 @@
 name: core
+
 on:
   push:
+    ignore-branches:
+      - dependabot/**
   pull_request:
     branches:
       - master
       - branch-*
-    types: [opened, synchronize]
 
 env:
   # Disable keepAlive and pool
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml
index dc4e9bdba6..f4579ec390 100644
--- a/.github/workflows/frontend.yml
+++ b/.github/workflows/frontend.yml
@@ -1,11 +1,13 @@
 name: frontend
+
 on:
   push:
+    ignore-branches:
+      - dependabot/**
   pull_request:
     branches:
       - master
       - branch-*
-    types: [opened, synchronize]
 
 env:
   # Disable keepAlive and pool
diff --git a/.github/workflows/quick.yml b/.github/workflows/quick.yml
index 7c4655959f..a8d1b7be4d 100644
--- a/.github/workflows/quick.yml
+++ b/.github/workflows/quick.yml
@@ -1,11 +1,13 @@
 name: quick
+
 on:
   push:
+    ignore-branches:
+      - dependabot/**
   pull_request:
     branches:
       - master
       - branch-*
-    types: [opened, synchronize]
 
 permissions:
   contents: read

Reply via email to