[hl] Ignore WANT_READ/WANT_WRITE errors when the socket is known to b… #83
Workflow file for this run
This file contains 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 pull request target branch | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
jobs: | |
check-branches: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check branches | |
run: | | |
if [ ${{ github.base_ref }} != "development" ]; then | |
echo "Merge requests should target `development`." | |
exit 1 | |
fi | |