Skip to content

Commit

Permalink
chore: update yml
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Oct 2, 2023
1 parent f7104a7 commit e01bea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-sync-submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:
id: git

- name: Reinstall node_modules
if: ${{ steps.git.outputs.modified != "false" }}
if: steps.git.outputs.modified == 'true'
run: |
echo "Run npm install..."
rm -rf package-lock.json node_modules
npm install --force --loglevel error --audit=false --fund=false
git add .
- name: Create Pull Request
if: ${{ steps.git.outputs.modified != "false" }}
if: steps.git.outputs.modified == 'true'
uses: peter-evans/create-pull-request@v5
with:
delete-branch: true
Expand Down

0 comments on commit e01bea7

Please sign in to comment.