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
1 change: 1 addition & 0 deletions lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ This action runs the following lint checks:
| `s3-bucket-name` | <p>S3 bucket name to cache node_modules to speed up dependency installation.</p> | `false` | `""` |
| `s3-bucket-region` | <p>S3 bucket region to cache node_modules to speed up dependency installation.</p> | `false` | `""` |
| `pre-commit-stage` | <p>Set this to run pre-commit against a specific stage of the pre-commit hooks.</p> | `false` | `""` |
| `extra-plugins` | <p>Extra plugins for semanitc-release in lint-release-notes. You can also specify specifying version range for the extra plugins if you prefer. Defaults to install @open-turo/semantic-release-config.</p> | `false` | `@open-turo/semantic-release-config ` |
<!-- action-docs-inputs source="action.yaml" -->
<!-- action-docs-outputs source="action.yaml" -->

Expand Down
8 changes: 8 additions & 0 deletions lint/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ inputs:
pre-commit-stage:
required: false
description: Set this to run pre-commit against a specific stage of the pre-commit hooks.
extra-plugins:
required: false
description: Extra plugins for semanitc-release in lint-release-notes. You can also specify specifying version range for the extra plugins if you prefer. Defaults to install @open-turo/semantic-release-config.
default: |
@open-turo/semantic-release-config

runs:
using: composite
steps:
Expand Down Expand Up @@ -83,3 +89,5 @@ runs:
env:
NPM_AUTH_TOKEN: ${{ inputs.npm-auth-token }}
NPM_TOKEN: ${{ inputs.npm-token }}
with:
extra-plugins: ${{ inputs.extra-plugins }}
Loading