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 2021/02/02 13:59:12 UTC

[camel-k-runtime] branch changelog created (now b04e21d)

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

acosentino pushed a change to branch changelog
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git.


      at b04e21d  Modified changelog action

This branch includes the following new commits:

     new b2f17ee  Added changelog action as submodule
     new b04e21d  Modified changelog action

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.



[camel-k-runtime] 01/02: Added changelog action as submodule

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch changelog
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit b2f17eebf6972855471014b13f67783fe9cee791
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 2 14:54:20 2021 +0100

    Added changelog action as submodule
---
 .github/actions/changelog | 1 +
 .gitmodules               | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/.github/actions/changelog b/.github/actions/changelog
new file mode 160000
index 0000000..907f479
--- /dev/null
+++ b/.github/actions/changelog
@@ -0,0 +1 @@
+Subproject commit 907f47986341079f902652be52ae2eae470b4818
diff --git a/.gitmodules b/.gitmodules
index 61cda74..38b2437 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,6 @@
 [submodule ".github/actions/backport"]
 	path = .github/actions/backport
 	url = https://github.com/tibdex/backport
+[submodule ".github/actions/changelog"]
+	path = .github/actions/changelog
+	url = https://github.com/CharMixer/auto-changelog-action


[camel-k-runtime] 02/02: Modified changelog action

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch changelog
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit b04e21d44fa2ab95263ab21d1d41851bccb4ab72
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 2 14:58:44 2021 +0100

    Modified changelog action
---
 .github/workflows/automatic-changelog-update.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml
index 00a3b59..ce54e9b 100644
--- a/.github/workflows/automatic-changelog-update.yml
+++ b/.github/workflows/automatic-changelog-update.yml
@@ -29,10 +29,14 @@ jobs:
     name: Generate changelog for master branch
     if: github.ref == 'refs/heads/master' && github.repository == 'apache/camel-k-runtime'
     steps:
-      - uses: actions/checkout@v1
+      - name: "Checkout camel-kafka-connector"
+        uses: actions/checkout@v2
+        with:
+          persist-credentials: false
+          submodules: recursive
 
       - name: Generate changelog
-        uses: charmixer/auto-changelog-action@v1.1
+        uses: ./.github/actions/changelog
         with:
           token: ${{ secrets.GITHUB_TOKEN }}