From 2f3e12de68e7b4cff1163b2eff038a43db48eeb2 Mon Sep 17 00:00:00 2001 From: Chris Hocking Date: Mon, 14 Oct 2024 15:12:01 +1100 Subject: [PATCH] Added fetch and pull to Retype GitHub Action --- .github/workflows/retype-action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/retype-action.yml b/.github/workflows/retype-action.yml index 22c948be1f..0c32a7fbc8 100644 --- a/.github/workflows/retype-action.yml +++ b/.github/workflows/retype-action.yml @@ -101,6 +101,9 @@ jobs: run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" + # Pull the latest changes from the remote + git fetch origin + git pull origin main echo "Checking for changes to commit..." git status echo "Adding changes..."