Skip to content

Commit

Permalink
chore(ci): improve checking the PR title (#464)
Browse files Browse the repository at this point in the history
- Use [`action-semantic-pull-request`](https://github.com/amannn/action-semantic-pull-request)
- Allow only reading the PR contents
- Enable merge group
  • Loading branch information
orhun authored Sep 2, 2023
1 parent e098731 commit 82b40be
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/check-pr-title.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
name: Check PR Title
name: Check Pull Requests

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


permissions:
pull-requests: read

jobs:
check-title:
runs-on: ubuntu-latest
steps:
- name: Check PR title
run: |
title="${{ github.event.pull_request.title }}"
if ! echo "$title" | grep -qE '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(\w+\))?!?: '; then
echo "error: PR title does not follow the Conventional Commits guidelines"
exit 1
fi
- name: Check PR title
if: github.event_name == 'pull_request_target'
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 82b40be

Please sign in to comment.