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/01 15:25:56 UTC

[camel-k-runtime] branch master updated (423ec3f -> 4d44c2b)

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


    from 423ec3f  Github actions: Do not persist credentials for Checkout action
     new d20d187  Added Backport github action as submodule
     new 4d44c2b  Added backport yml 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/{pr-validate.yml => backport.yml}    | 46 +++++++++-------------
 .gitmodules                                        |  3 ++
 3 files changed, 23 insertions(+), 27 deletions(-)
 create mode 160000 .github/actions/backport
 copy .github/workflows/{pr-validate.yml => backport.yml} (57%)
 create mode 100644 .gitmodules


[camel-k-runtime] 01/02: Added Backport github 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-runtime.git

commit d20d187293171f68259ce91d1efae77b3345344c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 16:21:45 2021 +0100

    Added Backport github action as submodule
---
 .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-k-runtime] 02/02: Added backport yml action

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

commit 4d44c2b4d63bfc7b59b7b2f9342f4a6bf1668a2d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 16:23:57 2021 +0100

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

diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
new file mode 100644
index 0000000..4690f41
--- /dev/null
+++ b/.github/workflows/backport.yml
@@ -0,0 +1,40 @@
+#
+# 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-k-runtime"
+        uses: actions/checkout@v2
+        with:
+          persist-credentials: false
+          submodules: recursive
+      - name: setup Node
+        uses: actions/setup-node@v2
+      - name: Backport
+        uses: ./.github/actions/backport
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}