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 2022/10/17 11:10:46 UTC

[camel-kamelets] branch main updated (47a7b62c -> 26e96ff7)

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

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


    from 47a7b62c Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Google Mail
     new 0edb3635 Added Submodule for changelog
     new 26e96ff7 Added 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.


Summary of changes:
 .gitmodules                                        |  3 ++
 kamelets/.github/actions/changelog                 |  1 +
 .../workflows/automatic-changelog-update.yml       | 61 ++++++++++++++++++++++
 3 files changed, 65 insertions(+)
 create mode 160000 kamelets/.github/actions/changelog
 create mode 100644 kamelets/.github/workflows/automatic-changelog-update.yml


[camel-kamelets] 01/02: Added Submodule for changelog

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

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

commit 0edb36356f1f94bac6c76bccc45d5d6873a8c0b5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 17 13:06:55 2022 +0200

    Added Submodule for changelog
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .gitmodules                        | 3 +++
 kamelets/.github/actions/changelog | 1 +
 2 files changed, 4 insertions(+)

diff --git a/.gitmodules b/.gitmodules
index 61cda74e..0a0eff9b 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,6 @@
 [submodule ".github/actions/backport"]
 	path = .github/actions/backport
 	url = https://github.com/tibdex/backport
+[submodule "kamelets/.github/actions/changelog"]
+	path = kamelets/.github/actions/changelog
+	url = https://github.com/charmixer/auto-changelog-action.git
diff --git a/kamelets/.github/actions/changelog b/kamelets/.github/actions/changelog
new file mode 160000
index 00000000..b25e89c9
--- /dev/null
+++ b/kamelets/.github/actions/changelog
@@ -0,0 +1 @@
+Subproject commit b25e89c9410e03189f0d48b02b3a8caad6e78015


[camel-kamelets] 02/02: Added 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 main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 26e96ff78b945f777358965024d13bb9eb8a4be5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 17 13:09:44 2022 +0200

    Added changelog action
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../workflows/automatic-changelog-update.yml       | 61 ++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/kamelets/.github/workflows/automatic-changelog-update.yml b/kamelets/.github/workflows/automatic-changelog-update.yml
new file mode 100644
index 00000000..29b958ba
--- /dev/null
+++ b/kamelets/.github/workflows/automatic-changelog-update.yml
@@ -0,0 +1,61 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+name: Changelog
+
+on:
+  schedule:
+    # Run at 3 during night
+    - cron:  '0 1 * * *'
+  workflow_dispatch:
+
+jobs:
+  generate_changelog:
+    if: github.repository == 'apache/camel-kamelets'
+    runs-on: ubuntu-latest
+    name: Generate changelog for main branch
+    steps:
+      - name: "Checkout"
+        uses: actions/checkout@v2
+        with:
+          persist-credentials: false
+          submodules: recursive
+
+      - name: Generate changelog
+        uses: ./.github/actions/changelog
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
+          exclude_labels: "duplicate,question,invalid,wontfix,build/camel-master,build/camel-main,build/quarkus-master,build/quarkus-main"
+          release_branch: "main"
+
+      - name: Commit files
+        env:
+          CI_USER: "github-actions[bot]"
+          CI_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
+        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' && echo "push=1" >> $GITHUB_ENV || 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:main