chore: Bump the documentation group across 1 directory with 4 updates #52
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Title | |
| on: | |
| push: | |
| branches: ['release-please--**'] | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| jobs: | |
| validate: | |
| name: Validate conventional commit format | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| with: | |
| types: | | |
| feat | |
| fix | |
| refac | |
| test | |
| docs | |
| chore | |
| ci | |
| perf | |
| requireScope: false | |
| subjectPattern: ^.+$ | |
| subjectPatternError: "PR title must have a description after the type" | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |