mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-12-28 15:46:08 +00:00
28 lines
944 B
YAML
28 lines
944 B
YAML
name: "Lint PR"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
main:
|
|
name: Validate PR title
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# https://www.conventionalcommits.org/en/v1.0.0/#summary
|
|
- uses: amannn/action-semantic-pull-request@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
requireScope: true
|
|
subjectPattern: ^(?![A-Z]).+$
|
|
# If `subjectPattern` is configured, you can use this property to override
|
|
# the default error message that is shown when the pattern doesn't match.
|
|
# The variables `subject` and `title` can be used within the message.
|
|
subjectPatternError: |
|
|
The subject "{subject}" found in the pull request title "{title}"
|
|
didn't match the configured pattern. Please ensure that the subject
|
|
doesn't start with an uppercase character. |