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

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 653b0b7  add /rebase comment support for Pull Requests
653b0b7 is described below

commit 653b0b76dd19c46ea3e1a82d2efcc223fba17e0e
Author: Michael Vorburger ⛑️ <vorbur...@apache.org>
AuthorDate: Mon Jan 13 08:54:53 2020 +0100

    add /rebase comment support for Pull Requests
    
    https://github.com/marketplace/actions/automatic-rebase
    
    https://github.com/cirrus-actions/rebase
---
 .github/workflows/rebase.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml
new file mode 100644
index 0000000..d8df210
--- /dev/null
+++ b/.github/workflows/rebase.yml
@@ -0,0 +1,23 @@
+# https://github.com/marketplace/actions/automatic-rebase  
(https://github.com/cirrus-actions/rebase)
+on:
+  issue_comment:
+    types: [created]
+name: Automatic Rebase
+jobs:
+  rebase:
+    name: Rebase
+    if: github.event.issue.pull_request != '' && 
contains(github.event.comment.body, '/rebase')
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@master
+    - name: Automatic Rebase
+      uses: cirrus-actions/rebase@1.2
+      env:
+        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+  # 
https://github.community/t5/GitHub-Actions/Workflow-is-failing-if-no-job-can-be-ran-due-to-condition/m-p/38186#M3250
+  always_job:
+    name: Aways run job
+    runs-on: ubuntu-latest
+    steps:
+      - name: Always run
+        run: "echo \"fineract/.github/workflows/rebase.yml: This job is used 
to prevent the workflow to fail when all other jobs are skipped.\""

Reply via email to