TEMP WIP - Need to set git credentials
diff --git a/.github/workflows/update-documentation.yml b/.github/workflows/update-documentation.yml
index a3c5dc6..7be2ecc 100644
--- a/.github/workflows/update-documentation.yml
+++ b/.github/workflows/update-documentation.yml
@@ -19,6 +19,10 @@
         uses: actions/checkout@v4
         with:
           ref: ${{ inputs.tag }}
+      - name: Prep git
+        run: |
+          git config --local user.email "[email protected]"
+          git config --local user.name "Selenium CI Bot"
       - name: Get updated Rakefile
         run: |
           git fetch origin auto_docs
@@ -46,6 +50,10 @@
         uses: actions/checkout@v4
         with:
           ref: ${{ inputs.tag }}
+      - name: Prep git
+        run: |
+          git config --local user.email "[email protected]"
+          git config --local user.name "Selenium CI Bot"
       - name: Get updated Rakefile
         run: |
           git fetch origin auto_docs
@@ -73,6 +81,10 @@
         uses: actions/checkout@v4
         with:
           ref: ${{ inputs.tag }}
+      - name: Prep git
+        run: |
+          git config --local user.email "[email protected]"
+          git config --local user.name "Selenium CI Bot"
       - name: Get updated Rakefile
         run: |
           git fetch origin auto_docs
@@ -103,6 +115,10 @@
         uses: actions/checkout@v4
         with:
           ref: ${{ inputs.tag }}
+      - name: Prep git
+        run: |
+          git config --local user.email "[email protected]"
+          git config --local user.name "Selenium CI Bot"
       - name: Get updated Rakefile
         run: |
           git fetch origin auto_docs
@@ -129,6 +145,10 @@
         uses: actions/checkout@v4
         with:
           ref: ${{ inputs.tag }}
+      - name: Prep git
+        run: |
+          git config --local user.email "[email protected]"
+          git config --local user.name "Selenium CI Bot"
       - name: Get updated Rakefile
         run: |
           git fetch origin auto_docs
@@ -187,4 +207,5 @@
           for patch in patches/*.patch; do
             git am < "$patch"
           done
-          git push origin api-docs-${{ inputs.tag }}
+      - name: Push Branch
+        run: git push origin api-docs-${{ inputs.tag }}