Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-28 20:05:57 +0300
committerKevin Ottens <ervin@ipsquad.net>2020-05-28 20:27:12 +0300
commit53c3eb8fe5f5b3685c33b728ebc7493459ff64df (patch)
tree343df915b8adaf9d8fe797ff671b0fec4e77ee52 /.github
parent08cc4e19671e083afc19be8566c287728a79b1e9 (diff)
Try to fix the rebase action
I think I got the if clause wrong regarding limiting the command only to member users. Let's move this out of the way for now. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rebase.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/rebase.yaml b/.github/workflows/rebase.yaml
index 94f178e3e..7540cabf9 100644
--- a/.github/workflows/rebase.yaml
+++ b/.github/workflows/rebase.yaml
@@ -5,7 +5,7 @@ name: Automatic Rebase
jobs:
rebase:
name: Rebase
- if: github.event.issue.pull_request != '' && github.event.comment.author_association == 'MEMBER' && contains(github.event.comment.body, '/rebase')
+ if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code