ci: commit-message-check: Take re-revert into consideration

`Reapply "` should be taken into sonsideration as well.

Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
This commit is contained in:
Fabiano Fidêncio 2024-08-21 14:19:16 +02:00
parent f071c8cada
commit 3fd021a9b3

View File

@ -34,7 +34,10 @@ jobs:
# #
# Revert "<original-subject-line>" # Revert "<original-subject-line>"
# #
filter_out_pattern: '^Revert "' # The format of a re-re-vert commit as follows:
#
# Reapply "<original-subject-line>"
filter_out_pattern: '^Revert "|^Reapply "'
- name: DCO Check - name: DCO Check
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}