-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): enforce conventional commits (#334)
- Loading branch information
Showing
1 changed file
with
12 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
name: Pull-Request Compliance | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, closed, reopened, synchronize] | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
check-pr-title: | ||
name: Check PR title | ||
runs-on: ubuntu-24.04 | ||
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable | ||
env: | ||
TITLE: ${{ github.event.pull_request.title }} | ||
steps: | ||
- name: Check title format | ||
run: | | ||
# has a colon which separates the area from the description | ||
# max 72 characters | ||
exit_code=0 | ||
if [[ ! ${TITLE} =~ ^[^:]+:.+$ ]]; then | ||
echo "PR title must specify an area and a description, see README.md" | ||
exit_code=1 | ||
fi | ||
if [[ ${#TITLE} -gt 72 ]]; then | ||
echo "PR title is too long, see README.md" | ||
exit_code=1 | ||
fi | ||
exit $exit_code | ||
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # [email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |