From 3fd021a9b3a88753ac53784ba944449e66a0040f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 21 Aug 2024 14:19:16 +0200 Subject: [PATCH] ci: commit-message-check: Take re-revert into consideration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `Reapply "` should be taken into sonsideration as well. Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/commit-message-check.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commit-message-check.yaml b/.github/workflows/commit-message-check.yaml index 6a51f03974..52ee3dcc42 100644 --- a/.github/workflows/commit-message-check.yaml +++ b/.github/workflows/commit-message-check.yaml @@ -34,7 +34,10 @@ jobs: # # Revert "" # - filter_out_pattern: '^Revert "' + # The format of a re-re-vert commit as follows: + # + # Reapply "" + filter_out_pattern: '^Revert "|^Reapply "' - name: DCO Check if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}