Skip to content

Commit

Permalink
ci: ensure PR titles adhere to conventional commits (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
d1onys1us authored May 14, 2024
1 parent ecde21d commit 105c0c6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/repo--validate-pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Validate PR Title

on:
pull_request_target:
types:
- opened
- edited
- synchronize
push:
branches:
- release-please-* # Trigger for release-please PRs, but skip the job
merge_group: # Trigger in the merge queue, but skip the job

jobs:
validate-pr-title:
if: github.event_name == 'pull_request_target'
runs-on: [taiko-runner]
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
subjectPattern: ^(?![A-Z])(?!.*\btypo\b).+$ # Require lowercase PR title and prohibit word "typo"
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character and doesn't contain the word "typo".

0 comments on commit 105c0c6

Please sign in to comment.