瀏覽代碼

Merge pull request #1638 from RooVetGit/disable_husky_in_update_contributors

Disable husky when updating contributors
Matt Rubens 9 月之前
父節點
當前提交
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