This is an automated email from the ASF dual-hosted git repository. lidongdai pushed a commit to branch revert-12815-update-mergeable-label-regex in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 7a6064602ced26f3f3f886280b5e14d28a8d2fb7 Author: David <[email protected]> AuthorDate: Sat Nov 12 23:59:23 2022 +0800 Revert "Update github mergeable label regex (#12815)" This reverts commit 2ba5bd47dde2defb90c18dcac4117d19d55b9076. --- .github/mergeable.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/mergeable.yml b/.github/mergeable.yml index f1d1a54048..a68c016c0c 100644 --- a/.github/mergeable.yml +++ b/.github/mergeable.yml @@ -50,13 +50,9 @@ mergeable: validate: - do: milestone no_empty: - enabled: false # Cannot be empty when true. + enabled: true # Cannot be empty when true. message: 'Milestone is required and cannot be empty.' - do: label - and: - - must_include: - regex: 'feature|bug|improvement|document|chore' - message: 'Label must include one of the following: `feature`, `bug`, `improvement`, `document`, `chore`' - - must_include: - regex: '3\.0\.x|3\.1\.x|3\.2\.0' - message: 'Label must include one or more of the following: `3.0.x`, `3.1.x`, `3.2.0`' + must_include: + regex: 'feature|bug|improvement|document|chore' + message: 'Label must include one of the following: `feature`, `bug`, `improvement`, `document`, `chore`'
