From 76743c46851c61de18b5aab72988fc5bf9b169ba Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Fri, 7 Nov 2025 13:44:20 -0500 Subject: [PATCH] fetch last two commits for comparison --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index ea3262d..b929923 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,8 @@ runs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 2 - name: Get pkgbase versions shell: bash @@ -21,6 +23,8 @@ runs: git reset --hard HEAD~1 && \ cp .artixlinux/pkgbase.yaml ./pkgbase.previous.yaml && \ git pull && \ + git config --global user.name 'Guy Incognito' && \ + git config --global user.email 'user@local' && \ git add ./pkgbase.previous.yaml && \ git commit -m "add previous pkgbase"