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/09/02 07:10:28 UTC

[camel-kafka-connector] branch master updated (3a97fe7 -> df6990f)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


    from 3a97fe7  Changelog action: Update master directly
     new 6ff8232  Changelog action: push on master
     new df6990f  Changelog action: Updated

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/automatic-changelog-update.yml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)


[camel-kafka-connector] 02/02: Changelog action: Updated

Posted by ac...@apache.org.
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-kafka-connector.git

commit df6990fd53b52c567458db549a5235552f594224
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Sep 2 09:10:06 2020 +0200

    Changelog action: Updated
---
 .github/workflows/automatic-changelog-update.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml
index ae80fba..b4d5cf4 100644
--- a/.github/workflows/automatic-changelog-update.yml
+++ b/.github/workflows/automatic-changelog-update.yml
@@ -50,7 +50,13 @@ jobs:
         run: |
           git config --local user.email "$CI_EMAIL"
           git config --local user.name "$CI_USER"
-          git add CHANGELOG.md 
-          git commit -m 'Updated CHANGELOG.md'
-          git push origin master
+          git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' && echo ::set-env name=push::1 || echo "No changes to CHANGELOG.md"
 
+      - name: Push changes
+        if: env.push == 1
+        env:
+          CI_USER: "github-actions[bot]"
+          CI_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
+          CI_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+        run: |
+          git push "https://$CI_USER:$CI_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:master


[camel-kafka-connector] 01/02: Changelog action: push on master

Posted by ac...@apache.org.
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-kafka-connector.git

commit 6ff8232ece97875c52328df1d04b51f44a5c3967
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Sep 2 09:08:17 2020 +0200

    Changelog action: push on master
---
 .github/workflows/automatic-changelog-update.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml
index 8b229f3..ae80fba 100644
--- a/.github/workflows/automatic-changelog-update.yml
+++ b/.github/workflows/automatic-changelog-update.yml
@@ -50,6 +50,7 @@ jobs:
         run: |
           git config --local user.email "$CI_EMAIL"
           git config --local user.name "$CI_USER"
-          git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md'
+          git add CHANGELOG.md 
+          git commit -m 'Updated CHANGELOG.md'
           git push origin master