From 231c67869da44cb41e47b717f75d9b5bbd84c811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Skow=20R=C3=B8ed?= Date: Fri, 20 May 2022 22:05:11 +0200 Subject: [PATCH] docs: Fix errors in the example in README.md (#1) Fixes: #97 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6bd4ce..e52cbbd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ jobs: ( contains(github.event.comment.body, '/rebase') || contains(github.event.comment.body, '/autosquash') - ) runs-on: ubuntu-latest + ) steps: - name: Checkout the latest code uses: actions/checkout@v2 @@ -31,7 +31,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo - name: Automatic Rebase - uses: cirrus-actions/rebase@1.5 + uses: cirrus-actions/rebase@1.7 with: autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }} env: