Skip to content

Bump devalue from 5.6.3 to 5.6.4 #78

Bump devalue from 5.6.3 to 5.6.4

Bump devalue from 5.6.3 to 5.6.4 #78

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