From 721236d892b65ef2e9b296ca513e179775bfb204 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Sun, 7 Apr 2024 12:34:14 +0800 Subject: [PATCH] chore: remove comment in PR title check pipeline (#2837) --- .github/workflows/pr.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bf0538c5f2..88232d9ff3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -17,17 +17,3 @@ jobs: const title = context.payload.pull_request.title.toLowerCase(); const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`)); if (!titleHasValidPrefix) { process.exit(-1); } - - - uses: thollander/actions-comment-pull-request@v2 - if: success() - with: - message: | - ✅ PR title meet the requirements. - comment_tag: PR title check result - - - uses: thollander/actions-comment-pull-request@v2 - if: failure() - with: - message: | - 🚨 PR title does not meet the requirements. It must start with one of the following prefixes: 'feat:', 'fix:', 'chore:', 'break:'. - comment_tag: PR title check result