diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 618e03d1..81d26da8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v5 + - uses: wagoid/commitlint-github-action@v6 trunk: runs-on: ubuntu-latest permissions: diff --git a/commitlint.config.js b/commitlint.config.mjs similarity index 86% rename from commitlint.config.js rename to commitlint.config.mjs index 2ef25a15..791f3dcd 100644 --- a/commitlint.config.js +++ b/commitlint.config.mjs @@ -1,4 +1,4 @@ -module.exports = { +export default { extends: ["@commitlint/config-conventional"], ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)], };