From 3d77d1a87481539e6fd9ec5ab2f63ff73dd5ed29 Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 2 Jan 2025 04:15:36 -0500 Subject: [PATCH] remove pr for testing --- .github/workflows/manual_api_cache_update.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/manual_api_cache_update.yml b/.github/workflows/manual_api_cache_update.yml index b3194a5..e64c762 100644 --- a/.github/workflows/manual_api_cache_update.yml +++ b/.github/workflows/manual_api_cache_update.yml @@ -37,17 +37,8 @@ jobs: git checkout -b api-bot/update-cache git config user.name "Blender Launcher[bot]" git config user.email "Blender-Launcher[bot]@users.noreply.github.com" - git add . - git commit -m "Update cache files" + git add -A + git commit -m "Update cache files" || echo "No changes to commit" - name: Push Changes run: | - git push origin api-bot/update-cache - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 - with: - branch: api-bot/update-cache - base: main - title: "[Bot] Automated cache update" - body: | - Automated API cache update + git push --set-upstream origin api-bot/update-cache || echo "Push failed"