ソースを参照

Merge pull request #1638 from RooVetGit/disable_husky_in_update_contributors

Disable husky when updating contributors
Matt Rubens 1 年間 前
コミット
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'
           node-version: '18'
           cache: 'npm'
           cache: 'npm'
           
           
+      - name: Disable Husky
+        run: |
+          echo "HUSKY=0" >> $GITHUB_ENV
+          git config --global core.hooksPath /dev/null
+          
       - name: Install dependencies
       - name: Install dependencies
         run: npm ci
         run: npm ci