Skip to content

Update Flemma-Dev/flemma.nvim #3275

Update Flemma-Dev/flemma.nvim

Update Flemma-Dev/flemma.nvim #3275

Workflow file for this run

---
name: PR Title
permissions:
contents: read
pull-requests: read
on:
pull_request:
types:
- opened
- edited
- synchronize
paths:
- README.md
jobs:
run:
name: Check the Pull Request Title
runs-on: ubuntu-latest
steps:
- name: Check PR Title
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
if ! echo "$PR_TITLE" | grep -qE '^(Add|Update|Remove) `[^`/]+/[^`/]+`$'; then
echo "PR title \"$PR_TITLE\" must match: \`\`\`Add|Update|Remove \`username/repo\` \`\`\`"
exit 1
fi