From cfdbc51f12959e271efd38e18199aacfc11924dc Mon Sep 17 00:00:00 2001 From: Ian Storm Taylor Date: Wed, 7 Apr 2021 10:58:56 -0400 Subject: [PATCH] update comment workflow --- .github/workflows/comment.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/comment.yml b/.github/workflows/comment.yml index 9781d591c..05dc6505a 100644 --- a/.github/workflows/comment.yml +++ b/.github/workflows/comment.yml @@ -10,9 +10,7 @@ jobs: rebase: name: rebase runs-on: ubuntu-latest - if: | - github.event.issue.pull_request != '' && - startsWith(github.event.comment.body, '/rebase') + if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase') steps: - name: Checkout repo uses: actions/checkout@v2 @@ -27,10 +25,7 @@ jobs: release_next: name: release:next runs-on: ubuntu-latest - if: | - github.event.issue.pull_request != '' && - github.event.sender.login === 'ianstormtaylor' && - startsWith(github.event.comment.body, '/release:next') + if: github.event.issue.pull_request != '' && github.event.sender.login === 'ianstormtaylor' && startsWith(github.event.comment.body, '/release:next') steps: - name: Checkout repo uses: actions/checkout@v2