From f752e52b8b5373ee891c5c18231203613ba76ad9 Mon Sep 17 00:00:00 2001 From: Jacob Hummer Date: Tue, 14 Nov 2023 13:20:51 -0600 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 04c9e27..91d07bc 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ 🔢 Lets you pick a specific version of Git to use (if needed) \ ⚡ Defaults to using the system version of Git \ 📂 Lets you add additional [safe directories] \ -🔑 Properly configures Git to use the `github.token` by default \ +🔑 Configures Git to use `github.token` when operating against `github.server_url` \ 👤 Sets up @github-actions\[bot\] as the default Git author ## Usage @@ -38,10 +38,10 @@ jobs: job: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - uses: actions4git/setup-git@v1 + - run: git clone "https://github.com/$GITHUB_REPOSITORY.git" . # ✅ - run: npx --yes prettier --write . - run: git add --all - - run: git commit --message 'Prettier' - - run: git push + - run: git commit --message 'Prettier' # ✅ + - run: git push # ✅ ```