Skip to content

Commit

Permalink
chore: lint pr titles
Browse files Browse the repository at this point in the history
  • Loading branch information
mghilardelli authored Jul 24, 2024
1 parent 7086d98 commit 779d360
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pr-title-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: PR Title Linter
on:
pull_request:
types: [opened, edited, reopened, unlocked]

permissions: read-all

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install commitlint
run: |
npm install @commitlint/config-conventional
npm install commitlint@latest
echo "module.exports = { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- name: "Lint: Pull request title"
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo $PR_TITLE | npx commitlint

- name: "Warning: Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"
if: ${{ failure() }}
run: echo "Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"

0 comments on commit 779d360

Please sign in to comment.