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

tsato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 6b1ebb07753a80b139933ca3109a4698c1e00f71
Author: Tadayoshi Sato <[email protected]>
AuthorDate: Sun Sep 4 19:49:06 2022 +0900

    Change Maven IT CI from daily to per pull request
---
 .github/workflows/maven-it.yaml | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven-it.yaml b/.github/workflows/maven-it.yaml
index 9fd86af13..c445cd1e7 100644
--- a/.github/workflows/maven-it.yaml
+++ b/.github/workflows/maven-it.yaml
@@ -14,15 +14,24 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-name: Daily Maven Plugins IT
+name: Maven Plugins IT
 
 env:
   MAVEN_ARGS: -V -ntp
 
 on:
-  schedule:
-    # Run at 0 during night
-    - cron:  '0 0 * * *'
+  push:
+    branches:
+      - main
+  pull_request:
+    branches:
+      - main
+    paths-ignore:
+      - README.md
+      - SECURITY.md
+      - Jenkinsfile
+      - Jenkinsfile.*
+      - NOTICE.txt
   workflow_dispatch:
 
 jobs:

Reply via email to