Skip to content

Commit

Permalink
ci: add workflow to check conventional PR title (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteoredz authored Oct 22, 2024
1 parent d77891b commit bf709ae
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/conventional-pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Conventional Commits PR title

on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
conventional-pr-title:
runs-on: ubuntu-latest
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
types: |
build
ci
chore
docs
feat
fix
perf
revert
refactor
style
test
requireScope: false

0 comments on commit bf709ae

Please sign in to comment.