This action verifies PR titles and descriptions. It labels pull requests accordingly. Merge conflict labeling could work in future when action can be run on PR's with merge conflicts.
Required Regex to be run on the PR title
Required Minimum length for PR title
Required Regex to be run on the PR description
Required Minimum length for PR description
uses: actions/verify-pr-action
with:
titleRegex: "Title.+"
titleMinLength: 10
descriptionRegex: "Description.+"
descriptionMinLength: 50