From f00eeea001d8fd865b15016552c9ebbc8f70edb9 Mon Sep 17 00:00:00 2001 From: skyline Date: Wed, 24 Dec 2025 03:10:21 +0000 Subject: [PATCH] Update .github/workflows/fetch-upstream-mods.yml --- .github/workflows/fetch-upstream-mods.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/fetch-upstream-mods.yml b/.github/workflows/fetch-upstream-mods.yml index 1cea11a7..342b2dfb 100644 --- a/.github/workflows/fetch-upstream-mods.yml +++ b/.github/workflows/fetch-upstream-mods.yml @@ -38,18 +38,16 @@ jobs: git remote set-url origin ssh://git@smallgit.dasguney.com:2222/skyline/balatro-mod-index.git git remote -v - - name: disable lfs lock verification + - name: Disable LFS lock verification run: | git config lfs.locksverify false - - name: commit changes + - name: Commit and push changes run: | git config --global user.name 'jim[bot]' git config --global user.email 'jim[bot]@users.noreply.github.com' git add mods - if git commit -m "fetch upstream mod changes (`date --utc +%Y%m%d_%H%M%SZ`)" - then + if git commit -m "fetch upstream mod changes ($(date --utc +%Y%m%d_%H%M%SZ))"; then git push origin main fi -