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 08:21:32 UTC

[camel-k] branch master updated (c1f704a -> c8c629c)

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-k.git.


    from c1f704a  fix(OLM): Add missing kustomize dependent target to the bundle target
     new 93f2319  Added changelog action as submodule
     new c8c629c  Align changelog action to submodule

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/actions/changelog                        | 1 +
 .github/workflows/automatic-changelog-update.yml | 8 ++++++--
 .gitmodules                                      | 3 +++
 3 files changed, 10 insertions(+), 2 deletions(-)
 create mode 160000 .github/actions/changelog


[camel-k] 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 master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 93f2319868845be0ecc28a612b4c1c03ea419da2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 2 09:19:30 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] 02/02: Align changelog action to submodule

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-k.git

commit c8c629c367e430fb8d9644260228ef6d81988cb7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 2 09:20:17 2021 +0100

    Align changelog action to submodule
---
 .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 d4cfa71..c648de0 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'
     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 }}