From f18499582b87c51123ecc3f257000ced060142b3 Mon Sep 17 00:00:00 2001 From: Ashley Qian Date: Thu, 6 Jan 2022 15:46:41 -0800 Subject: [PATCH] Bump `@1.4` to `@1.5` in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was trying to get `env: PR_NUMBER: xxx` to work via copying the code in the README. Took me a while to realize that y'all fixed it in `cirrus-actions/rebase@1.5`! Just bumping the sample code up a version so that it just works upon copy/paste 😄 Thanks for making this! ❤️ --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2667b7f..fa494bf 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,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.4 + uses: cirrus-actions/rebase@1.5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -45,7 +45,7 @@ Example token: ${{ secrets.PAT_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo - name: Automatic Rebase - uses: cirrus-actions/rebase@1.4 + uses: cirrus-actions/rebase@1.5 env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} ``` @@ -56,7 +56,7 @@ pull request: ```yaml - name: Automatic Rebase - uses: cirrus-actions/rebase@1.4 + uses: cirrus-actions/rebase@1.5 env: GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} PR_NUMBER: 1245