From efc97a0da19de58e60607cb0a08e45bdb22a637c Mon Sep 17 00:00:00 2001 From: duncdrum Date: Mon, 1 Apr 2024 15:39:59 +0200 Subject: [PATCH] perf(gha): improve bot pr dependabot commit messages --- .github/dependabot.yml | 4 +++- commitlint.config.cjs | 4 ++++ commitlint.config.js | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 commitlint.config.cjs delete mode 100644 commitlint.config.js diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0056901..dbe9188 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,4 +3,6 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" \ No newline at end of file + interval: "weekly" + commit-message: + prefix: "refactor(gha):" \ No newline at end of file diff --git a/commitlint.config.cjs b/commitlint.config.cjs new file mode 100644 index 0000000..08f6676 --- /dev/null +++ b/commitlint.config.cjs @@ -0,0 +1,4 @@ +module.exports = { + extends: ['@commitlint/config-angular'], + rules: { 'body-max-line-length': [0] } +} diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index bb9a3e8..0000000 --- a/commitlint.config.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = {extends: ['@commitlint/config-angular']}