chore: enforce conventional commits on PR titles (#3803)

### Description

uses this github action:
https://github.com/amannn/action-semantic-pull-request
pull/3808/head
Connor McEwen 6 months ago committed by GitHub
parent 3145be2543
commit 767c20f9ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 20
      .github/workflows/lint-pr.yaml

@ -0,0 +1,20 @@
name: 'Lint PR'
on:
pull_request_target:
types:
- opened
- edited
- synchronize
permissions:
pull-requests: read
jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save