Closed SodaVolcano closed 2 months ago
@ctmes have a look at what's different about the current yaml file and the yaml file below (from another of my project)
- name: Check for modified files
id: git-check
run: echo "modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT
- name: Push changes
if: steps.git-check.outputs.modified == 'true'
run:
git config --global user.name ${{ github.actor }} && git config --global user.email ${{ github.actor }}@users.noreply.github.com && git add . && git commit -m "Automated changes" && git push
Yo what is dis happened on #49