From 7d39651b57e64c35887271ef139648bdc4f18053 Mon Sep 17 00:00:00 2001 From: David Leins Date: Sun, 22 Oct 2023 15:03:43 +0200 Subject: [PATCH] chg: add gh commitlint scope --- .housekeeping/git-commit-template.txt | 1 + commitlint.config.js | 1 + 2 files changed, 2 insertions(+) diff --git a/.housekeeping/git-commit-template.txt b/.housekeeping/git-commit-template.txt index 6978f81..0f2f670 100644 --- a/.housekeeping/git-commit-template.txt +++ b/.housekeeping/git-commit-template.txt @@ -14,6 +14,7 @@ # test = Including new or correcting previous tests # build = Changes that affect the build system or external dependencies # revert = Reverts a previous commit +# gh = github related changes (actions, workflows, ...) # # can specify which part of the codebase is affected by the commit. # diff --git a/commitlint.config.js b/commitlint.config.js index 452d302..fe4203a 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -17,6 +17,7 @@ module.exports = { 'test', 'build', 'revert', + 'gh', ], ], }