From ee0dd1f93d080ff99411865eb30e899f360aea82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 17:34:21 +0300 Subject: [PATCH] chore(deps): bump the main group with 1 update (#50) --- .github/workflows/lint.yml | 2 +- commitlint.config.js => commitlint.config.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename commitlint.config.js => commitlint.config.mjs (86%) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index de69004..b34f53a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v5 + - uses: wagoid/commitlint-github-action@v6 trunk: if: > (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip workflows')) || diff --git a/commitlint.config.js b/commitlint.config.mjs similarity index 86% rename from commitlint.config.js rename to commitlint.config.mjs index 2ef25a1..791f3dc 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)], };