mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
21 lines
533 B
YAML
21 lines
533 B
YAML
|
name: Check PR title
|
||
|
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 }}
|