From: Kevin Ottens Date: Thu, 28 May 2020 17:05:57 +0000 (+0200) Subject: Try to fix the rebase action X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~200 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=53c3eb8fe5f5b3685c33b728ebc7493459ff64df;p=nextcloud-desktop.git 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 --- 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