mirror of
https://github.com/rockerBOO/awesome-neovim
synced 2024-11-10 13:44:13 +00:00
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:
parent
cdb30f7749
commit
7ac08e49de
1 changed files with 15 additions and 0 deletions
15
.github/workflows/pr-title.yml
vendored
Normal file
15
.github/workflows/pr-title.yml
vendored
Normal 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`'"
|
Loading…
Reference in a new issue