Merge pull request #1638 from RooVetGit/disable_husky_in_update_contributors

Disable husky when updating contributors
This commit is contained in:
Matt Rubens 2025-03-14 00:38:07 -04:00 committed by GitHub
commit 262046d761
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,6 +21,11 @@ jobs:
node-version: '18'
cache: 'npm'
- name: Disable Husky
run: |
echo "HUSKY=0" >> $GITHUB_ENV
git config --global core.hooksPath /dev/null
- name: Install dependencies
run: npm ci