From 7763bd10b44ad5ebace58bb3c9d2e2d595f7e681 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Thu, 8 Feb 2024 18:01:31 +0100 Subject: [PATCH] ci: allow revert in commits and PRs (#1406) Allows the use of the `revert` semantic commit. --- .github/workflows/conventional-commits-lint.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/conventional-commits-lint.js b/.github/workflows/conventional-commits-lint.js index da9b388b60..3c81518e1b 100644 --- a/.github/workflows/conventional-commits-lint.js +++ b/.github/workflows/conventional-commits-lint.js @@ -8,6 +8,7 @@ const RELEASE_AS_DIRECTIVE = /^\s*Release-As:/im; const BREAKING_CHANGE_DIRECTIVE = /^\s*BREAKING[ \t]+CHANGE:/im; const ALLOWED_CONVENTIONAL_COMMIT_PREFIXES = [ + "revert", "feat", "fix", "ci",