Skip to content

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group #908

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group #908

Workflow file for this run

name: "pr title"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
linting:
name: validate
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
# We use pinned version for non-verified actions to ensure security.
# https://github.com/amannn/action-semantic-pull-request/releases/tag/v6.1.1
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
fix
feat
docs
ci
chore
requireScope: false
# Configure additional validation for the subject based on a regex.
# This example ensures the subject doesn't start with an uppercase character.
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
starts with an uppercase character.
validateSingleCommit: false