ci: ensure PR subjects follow semantic commit spec (#2096)

This commit is contained in:
gegoune 2023-04-03 07:21:52 +03:00 committed by GitHub
parent 3e9509ec1b
commit 7cd722ff3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,15 @@
name: Semantic Pull Request Subject
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
semantic-pr-subject:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4.5.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}