From 84bbf5ea56b0577fdd10fa3c56a3720a1564551c Mon Sep 17 00:00:00 2001 From: Adrian Kant Date: Mon, 11 Mar 2024 17:11:35 -0400 Subject: [PATCH] ensure any public scope releases --- publishing/release-rules.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publishing/release-rules.cjs b/publishing/release-rules.cjs index ba84231c0..ab6be5b49 100644 --- a/publishing/release-rules.cjs +++ b/publishing/release-rules.cjs @@ -1,4 +1,4 @@ module.exports = [ { type: "feat", scope: "!", release: "major" }, - { type: "docs", scope: "public", release: "patch" }, + { scope: "public", release: "patch" }, ]; \ No newline at end of file