Skip to content

Add blog for test coverage. #42

Add blog for test coverage.

Add blog for test coverage. #42

Workflow file for this run

name: Check pull request target branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
check-branch:
runs-on: ubuntu-latest
steps:
- name: Check branch
run: |
if [ ${{ github.base_ref }} != "dev" ]; then
echo "Pull requests are only allowed to dev branch."
exit 1
fi