Skip to content

Commit 269941c

Browse files
authored
Merge pull request #21 from aj3sh/actions-update
fix: updated github actions name and readme docs for version info
2 parents 11f7b08 + f81c9b5 commit 269941c

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

.github/SECURITY.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ The 'commitlint' project is committed to maintaining the security and integrity
66

77
We provide security updates and support for the latest stable release of the 'commitlint' package. It is important to keep your software up to date to ensure you have the latest security patches.
88

9-
| Version | Supported |
10-
| ------- | ------------------ |
11-
| 0.2.0 | :white_check_mark: |
9+
| Version | Supported |
10+
| -------- | ------------------ |
11+
| >= 0.2.0 | :white_check_mark: |
1212

1313
## Reporting a Vulnerability
1414

.github/workflows/test_action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
- name: Run commitlint
1616
uses: ./ # Uses an action in the root directory
1717
# or use a released GitHub Action
18-
# uses: opensource-nepal/commitlint@0.2.0
18+
# uses: opensource-nepal/commitlint@v0.2.1

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.2.1
4+
5+
- Update Github actions name.
6+
- Updated documentations for Github actions and pre-commit hook.
7+
38
## 0.2.0
49

510
- Created commitlint CLI.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ commitlint is a tool designed to lint your commit messages according to the [Con
1919
...
2020

2121
- repo: https://github.com/opensource-nepal/commitlint
22-
rev: 0.2.0
22+
rev: v0.2.1
2323
hooks:
2424
- id: commitlint
2525

@@ -42,7 +42,7 @@ If you have any existing workflows, add the following steps:
4242
steps:
4343
...
4444
- name: Run commitlint
45-
uses: opensource-nepal/commitlint@0.2.0
45+
uses: opensource-nepal/commitlint@v0.2.1
4646
...
4747
```
4848

@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@v4
6565

6666
- name: Run commitlint
67-
uses: opensource-nepal/commitlint@0.2.0
67+
uses: opensource-nepal/commitlint@v0.2.1
6868
```
6969
7070
> **_NOTE:_** commitlint GitHub Actions will only be triggered by "push" or "pull_request" events.

action.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
name: "commitlint"
1+
name: "Conventional Commitlint"
22
description: "A GitHub Action to check conventional commit message"
3+
branding:
4+
color: "red"
5+
icon: "git-commit"
36
runs:
47
using: "composite"
58
steps:

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = commitlint
3-
version = 0.2.0
3+
version = 0.2.1
44
license = MIT
55
author = opensource-nepal
66

0 commit comments

Comments
 (0)