Skip to content

Commit

Permalink
CI: fix the infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Nov 4, 2024
1 parent bb77b73 commit 07f9ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
- name: Check for changes
id: changes
run: git diff
- name: Ammend and push changes
if: steps.changes.outputs.stdout == ''
- name: Amend and push changes
if: steps.changes.outputs.stdout != ''
run: |
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
Expand Down

0 comments on commit 07f9ad3

Please sign in to comment.