Skip to content

Upgrade: Bump postcss from 8.5.4 to 8.5.14 #920

Upgrade: Bump postcss from 8.5.4 to 8.5.14

Upgrade: Bump postcss from 8.5.4 to 8.5.14 #920

Workflow file for this run

name: PR Title
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: deepakputhraya/action-pr-title@3864bebc79c5f829d25dd42d3c6579d040b0ef16
name: Validate PR Title
continue-on-error: false
with:
regex: '\w+(\(\w+\))?:( [\w\.,]+)+( \(\w+ #\d+\))?' # Regex: "Prefix: message" or "Prefix(scope): message (optional #123)"
allowed_prefixes: 'Breaking,Build,Chore,Fix,New,Update,Upgrade,Deps,feat,fix,chore,docs,refactor,test,ci' # title should start with the given prefix
# disallowed_prefixes: 'feat/,hotfix' # title should not start with the given prefix
prefix_case_sensitive: false # title prefix are case insensitive
# min_length: 5 # Min length of the title
max_length: 80 # Max length of the title
github_token: ${{ secrets.GITHUB_TOKEN }} # Default: ${{ github.token }}
- uses: mshick/add-pr-comment@07f690343c25a94e24a8acb70d03c86b701ae322
name: Comment on PR
if: ${{ failure() }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: |
Please fix the title of this PR.
Format: `Prefix: description` (max 80 chars)
Allowed prefixes: `Breaking`, `Build`, `Chore`, `Fix`, `New`, `Update`, `Upgrade`, `Deps`, `feat`, `fix`, `chore`, `docs`, `refactor`, `test`, `ci`
Examples:
```
Fix: resolve login issue
New: add account toggle feature (fixes #123)
feat: improve logging infrastructure
feat(logging): add sanitization
```
See more in `release.config.js`.