From ac5f5c4596bf8217d600134f0b1075d50ac2cf85 Mon Sep 17 00:00:00 2001 From: Majid Kuhail Date: Sun, 26 Oct 2025 14:56:54 +0000 Subject: [PATCH 1/3] feat: initial release From 5076829904973a8631feff84ceaaa880d2f2e7dc Mon Sep 17 00:00:00 2001 From: Majid Kuhail Date: Sun, 26 Oct 2025 14:57:53 +0000 Subject: [PATCH 2/3] feat: add semantic release commit analyzer settings --- .releaserc.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.releaserc.json b/.releaserc.json index 9f14538..85ff8a4 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -1,7 +1,24 @@ { "branches": ["main"], "plugins": [ - "@semantic-release/commit-analyzer", + [ + "@semantic-release/commit-analyzer", + { + "releaseRules": [ + { "type": "feat", "release": "minor" }, + { "type": "fix", "release": "patch" }, + { "type": "perf", "release": "patch" }, + { "type": "revert", "release": "patch" }, + { "type": "docs", "release": "patch" }, + { "type": "style", "release": "patch" }, + { "type": "refactor", "release": "patch" }, + { "type": "test", "release": "patch" }, + { "type": "build", "release": "patch" }, + { "type": "ci", "release": "patch" }, + { "type": "chore", "release": false } + ] + } + ], "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github" From b7cff58d438f937f5cc4c1925474d448aff67e37 Mon Sep 17 00:00:00 2001 From: Majid Kuhail Date: Sun, 26 Oct 2025 14:59:41 +0000 Subject: [PATCH 3/3] ci: update check pipeline name --- .github/workflows/{ci.yml => check.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{ci.yml => check.yml} (98%) diff --git a/.github/workflows/ci.yml b/.github/workflows/check.yml similarity index 98% rename from .github/workflows/ci.yml rename to .github/workflows/check.yml index 0e05d97..e352e1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/check.yml @@ -1,4 +1,4 @@ -name: CI +name: Check on: push: