Skip to content

Commit

Permalink
feat[ci]: add conventional-commit validation to pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Mar 23, 2024
1 parent f4dfd10 commit 719a0da
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# jobs to validate pull request well-formedness

name: Validate PR metadata

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@v5

0 comments on commit 719a0da

Please sign in to comment.