From b8159cd6197c1f2365e755b5a5e9e214beb07aaf Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Thu, 8 Feb 2024 17:58:44 +0100 Subject: [PATCH] ci: allow revert in commits and PRs --- .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 da9b388b6..3c81518e1 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",