mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
2fcff0beda
* ci(check-pr-title): made prettier * fix(release-please): use personal token to be able to trigger release
22 lines
554 B
YAML
22 lines
554 B
YAML
name: Check PR title conventional commit
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: aslafy-z/conventional-pr-title-action@main
|
|
with:
|
|
success-state: Title follows the specification.
|
|
failure-state: Title does not follow the specification.
|
|
context-name: conventional-pr-title
|
|
preset: conventional-changelog-angular@latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |