Skip to content

Commit ac8b430

Browse files
committed
feat: bump node, deps, add bot_ignore
1 parent 674f464 commit ac8b430

17 files changed

+27594
-5511
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
build/
22
coverage/
33
dist/
4-
node_modules/
4+
node_modules/

.node-version

-1
This file was deleted.

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.3.0](https://github.com/jef/conventional-commits-pr-action/compare/v1.2.0...v1.3.0) (2024-12-11)
4+
5+
6+
### Features
7+
8+
* add bots_ignore input ([#231](https://github.com/jef/conventional-commits-pr-action/issues/231)) ([6a6c1c4](https://github.com/jef/conventional-commits-pr-action/commit/6a6c1c4e9d224ea5ee12911040d5983c028fe9a6))
9+
10+
## [1.2.0](https://github.com/jef/conventional-commits-pr-action/compare/v1.1.1...v1.2.0) (2024-12-11)
11+
12+
13+
### Features
14+
15+
* update node, deps, testing ([#229](https://github.com/jef/conventional-commits-pr-action/issues/229)) ([774e6b8](https://github.com/jef/conventional-commits-pr-action/commit/774e6b82d68662745722538184f979fb0dba9561))
16+
317
### [1.1.1](https://github.com/jef/conventional-commits-pr-action/compare/v1.1.0...v1.1.1) (2022-03-22)
418

519

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,19 @@ jobs:
3636
3737
## Inputs
3838
39+
### `bots_ignore`
40+
41+
**Optional** A list of bots to ignore when linting the pull request title. Can be a comma-separated list.
42+
3943
### `comment`
4044

4145
**Optional** Post a comment in the pull request conversation with examples.
4246

4347
| Default value | `true` |
4448
|---------------|--------|
4549

46-
**Note**: commenting in the pull request conversation requires that the token is configured with the `pull-requests` permission.
50+
> [!NOTE]
51+
> Commenting in the pull request conversation requires that the token is configured with the `pull-requests` permission.
4752

4853
### `token`
4954

action.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
name: Convetional Commits Pull Request
1+
name: Conventional Commits Pull Request
22
description: Lints a pull request title based on Conventional Commits
33
branding:
44
icon: align-left
55
color: blue
66
inputs:
7+
bots_ignore:
8+
required: false
9+
description: A list of bots to ignore when linting the pull request title. Can be a comma-separated list.
10+
default: ''
711
comment:
812
required: false
913
description: Post a comment in the pull request conversation with examples.
@@ -12,5 +16,5 @@ inputs:
1216
required: true
1317
description: Access token to the repository.
1418
runs:
15-
using: node16
19+
using: node20
1620
main: dist/index.js

0 commit comments

Comments
 (0)