remove check changes step

This commit is contained in:
Brendan McDevitt 2025-04-17 11:00:17 -05:00
parent 9d0d0d1cd6
commit 76ff7b6304

View file

@ -43,15 +43,6 @@ jobs:
git config --local user.email "action@git.mcdevitt.tech"
git config --local user.name "Git Action"
- name: Check for changes
id: check_changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "has_changes=true" >> $GITHUB_OUTPUT
else
echo "has_changes=false" >> $GITHUB_OUTPUT
fi
- name: Commit and push if there are changes
if: steps.check_changes.outputs.has_changes == 'true'
run: |