Skip to content

Commit

Permalink
feat(ci): enforce conventional commits (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah authored Dec 19, 2024
1 parent 16e6ddd commit 7cb57ae
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions .github/workflows/pr-compliance.yaml
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 }}

0 comments on commit 7cb57ae

Please sign in to comment.