Skip to content

Bump h3 from 1.15.5 to 1.15.9 #81

Bump h3 from 1.15.5 to 1.15.9

Bump h3 from 1.15.5 to 1.15.9 #81

Workflow file for this run

name: Check commit author
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Reject blocked domain commits
run: |
BLOCKED="@bhg-inc.com"
if git log --format='%ae%n%ce' --all | grep -qi "$BLOCKED"; then
echo "::error::Commits contain blocked email domain ($BLOCKED)"
exit 1
fi