Skip to content

chore: release main #614

chore: release main

chore: release main #614

Workflow file for this run

name: Lint PR
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
permissions:
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
pr-check:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Lint PR
uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
wip: false # needs write access if enabled
requireScope: false
subjectPattern: ^(?![A-Z]).+$
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
deps
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
starts with a lowercase character.
ci:
name: CI
needs: pr-check
uses: ./.github/workflows/ci.yml