From 8809ace66bc994d8421b975276fb496dc71400dc Mon Sep 17 00:00:00 2001 From: smog-root Date: Sun, 20 Oct 2024 20:40:54 +0530 Subject: [PATCH] Update pr-checker.yaml --- .github/workflows/pr-checker.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-checker.yaml b/.github/workflows/pr-checker.yaml index 2d3e74c..71901d3 100644 --- a/.github/workflows/pr-checker.yaml +++ b/.github/workflows/pr-checker.yaml @@ -42,7 +42,8 @@ if not re.search(r'Fixes #[0-9]+', pr_description): sys.exit(1) # Check if the PR title starts with FIX, FEAT, or DOC -if not re.match(r'^(FIX|FEAT|DOC)', pr_title): +if not re.match(r'^(Fixes|Close|Closes|Closed|Fix|Fixed|Resolve|Resolves +Resolved)', pr_title): print('The PR title should start with Fixes, Closes, or FIX.') sys.exit(1)