Skip to content

Commit

Permalink
feat: add PR Title Linter (#12)
Browse files Browse the repository at this point in the history
* edit release badge

* edit link

* edit image + link

* add .gitignore file

* add PR Title Linter
  • Loading branch information
meleksabit authored Nov 17, 2024
1 parent 836fa11 commit 010c0eb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pr-title-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PR Title Check

on:
pull_request:
types: [opened, edited]

jobs:
lint-pr-title:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Check PR Title
uses: actions/github-script@v7.0.1
with:
script: |
const title = context.payload.pull_request.title;
const regex = /^(feat|fix|chore|docs|style|refactor|perf|test): .+/;
if (!regex.test(title)) {
core.setFailed(`Invalid PR title: "${title}". Titles must match the pattern "type: description" (e.g., "feat: Add new feature").`);
} else {
console.log(`PR title "${title}" is valid.`);
}

0 comments on commit 010c0eb

Please sign in to comment.