Переглянути джерело

Merge pull request #1638 from RooVetGit/disable_husky_in_update_contributors

Disable husky when updating contributors
Matt Rubens 11 місяців тому
батько
коміт
262046d761
1 змінених файлів з 5 додано та 0 видалено
  1. 5 0
      .github/workflows/update-contributors.yml

+ 5 - 0
.github/workflows/update-contributors.yml

@@ -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