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
The following commit(s) were added to refs/heads/master by this push:
new e91789b chore: add a backport action
new 0cd9348 Merge pull request #1531 from nicolaferraro/backport
e91789b is described below
commit e91789b126b2fa92b54aa1d35a0691bb40e5ac7f
Author: Nicola Ferraro <[email protected]>
AuthorDate: Mon Jun 15 11:03:26 2020 +0200
chore: add a backport action
---
.github/workflows/backport.yml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
new file mode 100644
index 0000000..5ddfb05
--- /dev/null
+++ b/.github/workflows/backport.yml
@@ -0,0 +1,16 @@
+name: Backport
+on:
+ pull_request:
+ types:
+ - closed
+ - labeled
+
+jobs:
+ backport:
+ runs-on: ubuntu-18.04
+ name: Backport
+ steps:
+ - name: Backport
+ uses: tibdex/backport@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}