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:24 UTC

[camel-k-runtime] branch actions-backport created (now 162b9e2)

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

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


      at 162b9e2  Added backport yml action

This branch includes the following new commits:

     new 3fa8e8a  Added Backport github action as submodule
     new 162b9e2  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.



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

commit 3fa8e8a5c97f252adcc9754688ffbeeb4aed6a61
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 actions-backport
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 162b9e2087b0556c119dfbb97d9bb07bb3cc074a
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 }}