HelloCorda/.github/workflows/check-pr-title.yaml
Ronan Browne 7b3144001d
ES-650: use latest version of shared lib (#52)
* ES-650: use latest version of shared lib
* Add ES title check
2023-06-21 10:46:15 +01:00

15 lines
405 B
YAML

name: 'Check PR Title'
on:
pull_request:
types: [opened, edited, reopened]
jobs:
check-pr-title:
runs-on: ubuntu-latest
steps:
- uses: morrisoncole/pr-lint-action@v1.6.1
with:
title-regex: '^((CORDA|EG|ENT|INFRA|CORE|ES)-\d+)(.*)'
on-failed-regex-comment: "PR title failed to match regex -> `%regex%`"
repo-token: "${{ secrets.GITHUB_TOKEN }}"