chore: delete CHANGELOG.md #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Checks Pull-Request titles | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| types: [opened, edited, synchronize, reopened] | |
| jobs: | |
| title-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: deepakputhraya/action-pr-title@master | |
| with: | |
| # Only allow Conventional Commits prefixes recognized by release-please | |
| # feat: minor version bump, fix: patch version bump, others: no version bump | |
| regex: '^(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert)(\(.+\))?: (.+)' | |
| allowed_prefixes: 'feat,fix,docs,style,refactor,perf,test,build,ci,chore,revert' | |
| disallowed_prefixes: '' | |
| prefix_case_sensitive: false | |
| min_length: 10 | |
| max_length: 72 | |
| verbal_description: 'Conventional Commit message compatible with release-please (e.g., "feat: Add new feature", "fix: Fix bug")' | |
| github_token: ${{ github.token }} |