mirror of
https://github.com/rockerBOO/awesome-neovim
synced 2024-12-01 23:39:13 +00:00
16 lines
368 B
YAML
16 lines
368 B
YAML
name: PR Title
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, synchronize]
|
|
paths: [README.md]
|
|
|
|
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`'"
|