Skip to content

Commit

Permalink
Fix failing unity version sync workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skibitsky committed Dec 20, 2024
1 parent 23bf220 commit 110f4d8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/sync-unity-package-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ jobs:
- name: Sync Unity Package Version
run: dotnet-script ./.github/scripts/sync-unity-version.csx

- name: Check for changes
id: git-check
run: |
git diff --quiet || echo "changes=true" >> $GITHUB_OUTPUT
- name: Commit changes
if: steps.git-check.outputs.changes == 'true'
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
Expand Down

0 comments on commit 110f4d8

Please sign in to comment.