Skip to content

chore(ipa): bump parquet-wasm from 0.6.1 to 0.7.0 #253

chore(ipa): bump parquet-wasm from 0.6.1 to 0.7.0

chore(ipa): bump parquet-wasm from 0.6.1 to 0.7.0 #253

Workflow file for this run

name: IPA Commit Check
on:
pull_request:
types: [opened, synchronize, reopened, edited]
paths:
- 'tools/spectral/ipa/**'
jobs:
check-pr-title:
runs-on: ubuntu-latest
steps:
- name: Validate PR Title with IPA scope
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
PATTERN="^[a-z]+\(ipa\): .+$"
if [[ ! "$PR_TITLE" =~ $PATTERN ]]; then
echo "PR title must follow the conventional commit format with (ipa) as the scope."
echo "Example: feat(ipa): My New Rule"
exit 1
fi