You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/02/10 08:38:05 UTC

[camel-spring-boot] branch master updated: Trying to build Camel from Github actions

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new c2fab73  Trying to build Camel from Github actions
c2fab73 is described below

commit c2fab730c618e3951903b8c86539ad804e36fba7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 10 09:37:37 2020 +0100

    Trying to build Camel from Github actions
---
 .github/workflows/automatic-sync-master.yml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/automatic-sync-master.yml b/.github/workflows/automatic-sync-master.yml
index 87cb0f4..4f4e05f 100644
--- a/.github/workflows/automatic-sync-master.yml
+++ b/.github/workflows/automatic-sync-master.yml
@@ -20,7 +20,7 @@ name: Sync Camel Spring Boot Master Branch
 on:
   schedule:
     # Run every day at midnight
-    - cron:  '0 0 * * *'
+    - cron:  '* 5 * * *'
 
 jobs:
   sync:
@@ -29,6 +29,17 @@ jobs:
       # Note: checkout@v2 seems to break the pull-request action hence v1 is used
       - name: Checkout
         uses: actions/checkout@v1
+        with:
+          repository: apache/camel
+          ref: master
+      - name: Set Up Java
+        uses: actions/setup-java@v1
+        with:
+          java-version: 1.8
+      - name: Build Project
+        run: ./mvnw clean install -DskipTests
+      - name: Checkout SB
+        uses: actions/checkout@v1
       - name: GitHub Pull Request Action
         uses: repo-sync/pull-request@v2.0.1
         with: