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/01/26 09:16:22 UTC

[camel-kamelets] branch main updated (0bab919 -> e049412)

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 0bab919  Support DefaultCredentialProvider in the AWS Kamelets - AWS S3 Source
     new 4d4fb3c  Added Backport module for GH Action
     new e049412  Added Backport GH 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:
 .github/actions/backport                           |  1 +
 .../workflows/backport.yml                         | 26 +++++++++++++++++-----
 .gitmodules                                        |  3 +++
 3 files changed, 24 insertions(+), 6 deletions(-)
 create mode 160000 .github/actions/backport
 copy docs/local-build.sh => .github/workflows/backport.yml (64%)
 mode change 100755 => 100644
 create mode 100644 .gitmodules

[camel-kamelets] 01/02: Added Backport module for GH 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 4d4fb3ccb0225fecf2400ac00b6bcecd0aa8f05f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 26 10:13:17 2022 +0100

    Added Backport module for GH Action
---
 .github/actions/backport | 1 +
 .gitmodules              | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/.github/actions/backport b/.github/actions/backport
new file mode 160000
index 0000000..2d7713b
--- /dev/null
+++ b/.github/actions/backport
@@ -0,0 +1 @@
+Subproject commit 2d7713b178ee4f86d505da2f829301b912c0a4ca
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..61cda74
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule ".github/actions/backport"]
+	path = .github/actions/backport
+	url = https://github.com/tibdex/backport

[camel-kamelets] 02/02: Added Backport GH 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 e049412df9dafdd0a67ee1f0d410a00065792568
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 26 10:14:48 2022 +0100

    Added Backport GH action
---
 .github/workflows/backport.yml | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
new file mode 100644
index 0000000..d446eab
--- /dev/null
+++ b/.github/workflows/backport.yml
@@ -0,0 +1,38 @@
+#
+# 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: Backport
+on:
+  pull_request:
+    types:
+      - closed
+      - labeled
+
+jobs:
+  backport:
+    runs-on: ubuntu-18.04
+    name: Backport
+    steps:
+      - name: "Checkout Camel Kamelets"
+        uses: actions/checkout@v2
+        with:
+          persist-credentials: false
+          submodules: recursive
+      - name: Backport
+        uses: ./.github/actions/backport
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}