Skip to content

Commit e4f9b1e

Browse files
authored
chore: ignore ci and chore PRs in release notes (#10292)
### Description Instruct the labeler to mark PRs with conventional commits that are `ci` or `chore`. Then, ignore it when generating release notes.
1 parent 180d948 commit e4f9b1e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ changelog:
55
labels:
66
- "area: ci"
77
- "release: turborepo"
8+
- "release-notes-ignore"
89
categories:
910
- title: Docs
1011
labels:

.github/turbo-orchestrator.yml

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ labeler:
3434
- label: "needs: triage"
3535
when:
3636
isNotPRAuthorMatch: "^(padmaia|anthonyshew|dimitropoulos|tknickman|chris-olszewski|NicholasLYang)$"
37+
# Removes the PR from release notes when its chore or ci
38+
- label: "release-notes-ignore"
39+
when:
40+
isPrTitleMatch: "(\bchore\b|\bci\b).*?:"
3741

3842
# areas
3943
- label: "area: ci"

0 commit comments

Comments
 (0)