mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
chore(ci): improve checking the PR title (#464)
- Use [`action-semantic-pull-request`](https://github.com/amannn/action-semantic-pull-request) - Allow only reading the PR contents - Enable merge group
This commit is contained in:
parent
e098731d6c
commit
82b40be4ab
1 changed files with 13 additions and 11 deletions
24
.github/workflows/check-pr-title.yml
vendored
24
.github/workflows/check-pr-title.yml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue