From 496fdcbeeb95835fe5e8e1f3606bc748737886da Mon Sep 17 00:00:00 2001 From: DougCh <54039637+dougch@users.noreply.github.com> Date: Fri, 14 Feb 2020 15:10:23 -0800 Subject: [PATCH] Add checkout options to the example These two lines are critical to the function of the Action, please add to the readme so the fix in #44 doesn't get lost. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b0c5c60..64df458 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master + with: + persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token + fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Create local changes run: | ...