Skip to content

Commit

Permalink
chore: 🔨 add PR Conventional Commit Validation workflow for opened PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfyre committed Oct 9, 2024
1 parent 1f3265a commit 068ba8f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PR Conventional Commit Validation

on:
pull_request:
types: [opened, synchronize, reopened, edited]

jobs:
validate-pr-title:
runs-on: ubuntu-latest
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@1.1.0
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert", "build"]'

0 comments on commit 068ba8f

Please sign in to comment.