Skip to content

Commit

Permalink
feat: bump node, deps, add bot_ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jef committed Dec 12, 2024
1 parent 674f464 commit ac8b430
Show file tree
Hide file tree
Showing 17 changed files with 27,594 additions and 5,511 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build/
coverage/
dist/
node_modules/
node_modules/
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.3.0](https://github.com/jef/conventional-commits-pr-action/compare/v1.2.0...v1.3.0) (2024-12-11)


### Features

* 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))

## [1.2.0](https://github.com/jef/conventional-commits-pr-action/compare/v1.1.1...v1.2.0) (2024-12-11)


### Features

* 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))

### [1.1.1](https://github.com/jef/conventional-commits-pr-action/compare/v1.1.0...v1.1.1) (2022-03-22)


Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,19 @@ jobs:
## Inputs
### `bots_ignore`

**Optional** A list of bots to ignore when linting the pull request title. Can be a comma-separated list.

### `comment`

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

| Default value | `true` |
|---------------|--------|

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

### `token`

Expand Down
8 changes: 6 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: Convetional Commits Pull Request
name: Conventional Commits Pull Request
description: Lints a pull request title based on Conventional Commits
branding:
icon: align-left
color: blue
inputs:
bots_ignore:
required: false
description: A list of bots to ignore when linting the pull request title. Can be a comma-separated list.
default: ''
comment:
required: false
description: Post a comment in the pull request conversation with examples.
Expand All @@ -12,5 +16,5 @@ inputs:
required: true
description: Access token to the repository.
runs:
using: node16
using: node20
main: dist/index.js
Loading

0 comments on commit ac8b430

Please sign in to comment.