Skip to content

Commit 721236d

Browse files
authored
chore: remove comment in PR title check pipeline (#2837)
1 parent 9e23c8c commit 721236d

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

.github/workflows/pr.yml

-14
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,3 @@ jobs:
1717
const title = context.payload.pull_request.title.toLowerCase();
1818
const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`));
1919
if (!titleHasValidPrefix) { process.exit(-1); }
20-
21-
- uses: thollander/actions-comment-pull-request@v2
22-
if: success()
23-
with:
24-
message: |
25-
✅ PR title meet the requirements.
26-
comment_tag: PR title check result
27-
28-
- uses: thollander/actions-comment-pull-request@v2
29-
if: failure()
30-
with:
31-
message: |
32-
🚨 PR title does not meet the requirements. It must start with one of the following prefixes: 'feat:', 'fix:', 'chore:', 'break:'.
33-
comment_tag: PR title check result

0 commit comments

Comments
 (0)