Skip to content

EE-00: Change structure #140

EE-00: Change structure

EE-00: Change structure #140

Workflow file for this run

# This job checks that pull requests
# * start with EE-#####
# * github truncates title msgs over 70 characters
name: 'PR Title Check'
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
pull-requests: write
jobs:
pr-title-check-job:
name: PR Title Check
runs-on: ubuntu-latest
steps:
- name: Ensure title is EE-<digits> <space> and <=120 chars
uses: deepakputhraya/action-pr-title@v1.0.2
with:
regex: '^EE-\d\d+:? .*'
max_length: 120
github_token: '${{ secrets.GITHUB_TOKEN }}'