awesome-neovim/.github/workflows/pr-title.yml
2024-01-11 15:41:47 +07:00

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`'"