mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 12:17:37 +00:00
18 lines
367 B
YAML
18 lines
367 B
YAML
name: Pull Request Linter
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
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 }}
|