mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 14:37:41 +00:00
19 lines
388 B
YAML
19 lines
388 B
YAML
name: Pull Request Linter
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- synchronized
|
|
jobs:
|
|
lint-pr:
|
|
name: Lint pull request title
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Lint pull request title
|
|
uses: jef/conventional-commits-pr-action@v1
|
|
with:
|
|
comment: false
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|