Bump h3 from 1.15.5 to 1.15.9 #81
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: 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 |