diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 2ca3102196..bcbd629aca 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -45,6 +45,7 @@ jobs: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} WORKON_HOME: "" PYTHONPATH: ${{ env.PYTHONPATH }} + VALIDATE_GIT_COMMITLINT: false pr-dotenv-linter: runs-on: ubuntu-latest steps: diff --git a/commitlint.config.ts b/commitlint.config.ts deleted file mode 100644 index 96679f79c4..0000000000 --- a/commitlint.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://github.com/super-linter/super-linter/blob/5d6e3fcecc2b2906eedc2d15495fd6027bf51a9e/commitlint.config.js -module.exports = { - extends: ["@commitlint/config-conventional"], - helpUrl: "https://www.conventionalcommits.org/", - // We need this until https://github.com/dependabot/dependabot-core/issues/2445 - // is resolved. - ignores: [(msg: string) => /Signed-off-by: dependabot\[bot]/m.test(msg)], -};