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

valdar 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 59a7d2c  Naming and comments changes on github action.
59a7d2c is described below

commit 59a7d2cf613e15d1e403d6f94b5051377a4aa0c8
Author: Andrea Tarocchi <andrea.taroc...@gmail.com>
AuthorDate: Tue Feb 18 07:52:13 2020 +0100

    Naming and comments changes on github action.
---
 .github/workflows/automatic-sync-master.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/automatic-sync-master.yml 
b/.github/workflows/automatic-sync-master.yml
index c48d026..a01c8b0 100644
--- a/.github/workflows/automatic-sync-master.yml
+++ b/.github/workflows/automatic-sync-master.yml
@@ -19,14 +19,14 @@ name: Sync Camel Spring Boot Master Branch
 
 on:
   schedule:
-    # Run every 10 minutes
+    # Run at midnight every day
     - cron:  '0 0 * * *'
 jobs:
   build:
     name: Sync Camel Spring Boot Master Branch
     runs-on: ubuntu-latest
     steps:
-      - name: Checkout
+      - name: Checkout Camel project
         uses: actions/checkout@v2
         with:
           repository: apache/camel
@@ -36,21 +36,21 @@ jobs:
         uses: actions/setup-java@v1
         with:
           java-version: 1.8
-      - name: Build Project
+      - name: Build Camel Project
         run: ./mvnw -V --no-transfer-progress clean install -DskipTests
         working-directory: ${{ github.workspace }}/camel
-      - name: Checkout
+      - name: Checkout Camel-spring-boot project
         uses: actions/checkout@v2
         with:
           ref: master
           fetch-depth: 0
-      - name: Build Project
+      - name: Build Camel-spring-boot Project
         run: ./mvnw -V --no-transfer-progress clean install -DskipTests
       - name: Create Pull Request
         uses: peter-evans/create-pull-request@v2.4.1
         with:
           token: ${{ secrets.GITHUB_TOKEN }}
-          branch: periodic-sync
+          branch: automatic-periodic-sync
           title: '[Github Actions] Periodic Sync Camel Spring Boot Master 
Branch'
           body: |
             Periodic Sync of Camel Spring Boot Master Branch with main Camel 
Master.

Reply via email to