fix: add no-verify for commit line

This commit is contained in:
Joe Previte 2021-03-11 10:14:56 -07:00
parent 3e79a84152
commit b0861029c0
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 3 additions and 1 deletions

View File

@ -104,7 +104,9 @@ main() {
echo "Note: this is intentional"
echo "If we don't do this, code review is impossible."
echo -e "For more info, see docs: docs/CONTRIBUTING.md#updating-vs-code\n"
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION"
# We need --no-verify to skip the husky pre-commit hook
# which fails because of the merge conflicts
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION" --no-verify
# Note: we can't open a draft PR unless their are changes.
# Hence why we do this after the subtree update.