From 418e518867c393c55df77cb1a4c4001982db51aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Skow=20R=C3=B8ed?= Date: Fri, 20 May 2022 22:29:47 +0200 Subject: [PATCH] docs: Fix errors in the example in README.md (#1) (#98) --- 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: