mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-13 04:21:22 -05:00
24 lines
570 B
YAML
24 lines
570 B
YAML
name: Check PR title
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- mealie-next
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: aslafy-z/conventional-pr-title-action@master
|
|
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 }}
|