Skip to content

Commit 5e740bd

Browse files
authored
chore(config): prevent chore/ci/build/test from triggering releases (#4512)
Add hidden: true to non-releasable commit types in release-please config. Only feat and fix should trigger npm releases.
1 parent 4c0c5ee commit 5e740bd

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/release-please-config.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,23 @@
8383
},
8484
{
8585
"type": "chore",
86-
"section": "🔧 Chores"
86+
"section": "🔧 Chores",
87+
"hidden": true
8788
},
8889
{
8990
"type": "ci",
90-
"section": "👷 CI/CD"
91+
"section": "👷 CI/CD",
92+
"hidden": true
9193
},
9294
{
9395
"type": "build",
94-
"section": "📦 Build System"
96+
"section": "📦 Build System",
97+
"hidden": true
9598
},
9699
{
97100
"type": "test",
98-
"section": "✅ Tests"
101+
"section": "✅ Tests",
102+
"hidden": true
99103
}
100104
],
101105

0 commit comments

Comments
 (0)