Skip to content

Commit

Permalink
Fix logical not
Browse files Browse the repository at this point in the history
  • Loading branch information
vallode committed Apr 29, 2024
1 parent 6eebafa commit e997b91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
id: submodules_updated
run: echo "changed=$(git diff --quiet HEAD -- dfhack df-structures)" >> $GITHUB_OUTPUT
- name: Setup git user
if: ${{ !!steps.submodules_updated.outputs.changed }}
if: ${{ steps.submodules_updated.outputs.changed == true }}
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Commit changes
if: ${{ !!steps.submodules_updated.outputs.changed }}
if: ${{ !!steps.submodules_updated.outputs.changed == true }}
run: |
git add dfhack df-structures
git commit -m "Auto-update submodules"
Expand Down

0 comments on commit e997b91

Please sign in to comment.