Feat/add pr title checker github action (#1014)

* ️ work in progress Mon Dec 25 21:05:35 2023

* add template

*  work in progress Mon Dec 25 22:01:15 2023

* bla (#1)

* feat/add-pr-title-checker
This commit is contained in:
Moshe Avni 2023-12-26 03:32:35 -05:00 committed by GitHub
parent cdb30f7749
commit 7ac08e49de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/workflows/pr-title.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: PR Title
on:
pull_request:
types: [opened, edited, synchronize]
jobs:
run:
name: Check the Pull Request Title
runs-on: ubuntu-latest
steps:
- uses: Slashgear/action-check-pr-title@v4.3.0
with:
regexp: "(Add|Update|Remove) `.+\\/.+`"
helpMessage: "Example: 'Add `folke/lazy.nvim`'"