Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ jobs:
- run: npm ci
- run: npm run build

- name: Setup Git identity
run: |
git config user.name "semantic-release-bot"
git config user.email "[email protected]"

- name: Run semantic-release
run: npx semantic-release
env:
Expand Down
5 changes: 4 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
module.exports = { extends: ["@commitlint/config-conventional"] };
module.exports = {
extends: ["@commitlint/config-conventional"],
ignores: [(commit) => commit.startsWith("chore(release):")],
};
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rule Engine

A light weight rule engine for evaluating conditions and executing actions based on predefined rules.
> A light weight rule engine for evaluating conditions and executing actions based on predefined rules.

[![NPM Version](https://img.shields.io/npm/v/@arunkumar_h/rule-engine)](https://www.npmjs.com/package/@arunkumar_h/rule-engine)
[![NPM Downloads](https://img.shields.io/npm/dm/@arunkumar_h/rule-engine)](https://www.npmjs.com/package/@arunkumar_h/rule-engine)
Expand All @@ -13,7 +13,6 @@ A light weight rule engine for evaluating conditions and executing actions based
[![badge-lines](badges/badge-lines.svg)](badges/badge-lines.svg)
[![badge-statements](badges/badge-statements.svg)](badges/badge-statements.svg)


## Installation

```bash
Expand Down
1 change: 1 addition & 0 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = {
assets: ["CHANGELOG.md", "package.json"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
skipHooks: true, // ⛔️ skips husky hooks like commit-msg
},
],
],
Expand Down