From 9bfd0c9c1b2025f1e50a23a690e9f68c39aba95f Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Fri, 14 Mar 2025 00:35:38 -0400 Subject: [PATCH] Disable husky when updating contributors --- .github/workflows/update-contributors.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index eb6479a751..9be41c0b67 100644 --- a/.github/workflows/update-contributors.yml +++ b/.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