Lints pull requests based on Conventional Commits v1.0.0.
Also has the ability to post a comment in the pull request conversation with examples.
Live examples:
name: Pull Request Linter
on:
pull_request:
types:
- opened
- edited
- reopened
jobs:
lint-pr:
name: Lint pull request title
runs-on: ubuntu-latest
permissions:
pull-requests: write # post comments when 'comment' is true
steps:
- name: Lint pull request title
uses: jef/conventional-commits-pr-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}Optional A list of bots to ignore when linting the pull request title. Can be a comma-separated list.
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.
Required Access token to the repository. Usually ${{ secrets.GITHUB_TOKEN }}.
There are few npm tasks that will help you in building and packaging. All commands are prefaced by npm run.
build: builds the action.clean: removesbuilddirectory.compile: transpiles TypeScript.fix: fixes lint and format issues.lint: runs linter and checks format issues.start: runs the action.test: tests the action.
